This commit is contained in:
Alejandro Javier Asenjo Nitti 2023-10-06 08:16:58 -03:00
parent 6d55487ac3
commit 099a993bb9
3 changed files with 15 additions and 10 deletions

View File

@ -48,7 +48,7 @@ options:
asm_jtbl_label_macro: jlabel
asm_data_macro: dlabel
# section_order: [".text", ".data", ".rodata", ".bss"]
section_order: [".text", ".data", ".rodata", ".bss", "bin"]
# auto_all_sections: [".data", ".rodata", ".bss"]

View File

@ -13,7 +13,8 @@
- [0xC8E40, rodata]
- { start: 0xDE480, type: bss, vram: 0x800DD880 }
- type: bin
- name: unkbin
type: bin
start: 0xDE480
follows_vram: main
- [0xC00000]

View File

@ -1,10 +1,14 @@
- name: makerom
type: code
- name: header
type: header
start: 0x0
- name: ipl3
type: bin
start: 0x40
- name: entry
type: code
start: 0x1000
vram: 0x80000400
subsegments:
- [0x000000, header, makerom/header]
- [0x000040, bin, makerom/ipl3]
- start: 0x001000
type: hasm
name: makerom/entry
vram: 0x80000400
- [0x1000, asm, entry]