We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df0cdf1 commit 0c79260Copy full SHA for 0c79260
1 file changed
core/src/utilities.zig
@@ -1,7 +1,10 @@
1
const std = @import("std");
2
const microzig = @import("microzig.zig");
3
4
+/// Fills .bss with zeroes and copies .data from flash into ram. May be called
5
+/// internally by the cpu module at startup.
6
pub fn initialize_system_memories() void {
7
+
8
// Contains references to the microzig .data and .bss sections, also
9
// contains the initial load address for .data if it is in flash.
10
const sections = struct {
0 commit comments