Basic working version generates sounds and graphics

This commit is contained in:
Dejvino
2026-02-23 22:39:29 +01:00
parent 6459fe2f02
commit 8a3abafd84
10 changed files with 572 additions and 47 deletions
+12
View File
@@ -0,0 +1,12 @@
SECTIONS
{
. = 0x8000;
.text : { *(.text.boot) *(.text) }
.rodata : { *(.rodata) }
.data : { *(.data) }
.bss : {
__bss_start = .;
*(.bss)
__bss_end = .;
}
}