We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3da412e commit 9a8cddbCopy full SHA for 9a8cddb
mos-platform/nes-nrom/nes-nrom.ld
@@ -18,8 +18,7 @@ SECTIONS {
18
INCLUDE data-symbols.ld
19
INCLUDE bss.ld
20
INCLUDE noinit.ld
21
-
22
- .chr_rom : { *(.chr_rom) } >chr_rom
+ INCLUDE chr-rom.ld
23
24
.vector 0xfffa : { SHORT(nmi) SHORT(_start) SHORT(irq) } >prg_rom
25
}
mos-platform/nes-slrom/link.ld
@@ -28,6 +28,7 @@ SECTIONS {
28
__data_size = SIZEOF(.data);
29
30
31
32
33
.vector 0xfffa - ORIGIN(prg_rom_hi) + ORIGIN(prg_rom_15) : {
34
SHORT(nmi) SHORT(_start) SHORT(irq)
mos-platform/nes/CMakeLists.txt
@@ -6,6 +6,7 @@ endif()
6
7
install(FILES ppu.h TYPE INCLUDE)
8
install(FILES
9
+ chr-rom.ld
10
ppu.h
11
nes.ld
12
ines.ld
0 commit comments