reorganize files
This commit is contained in:
parent
642c17b203
commit
bc5da1b12f
12 changed files with 22 additions and 18 deletions
11
.gitignore
vendored
11
.gitignore
vendored
|
@ -1,10 +1,9 @@
|
||||||
old.asm
|
|
||||||
_old
|
|
||||||
microcodes
|
|
||||||
*.bin
|
*.bin
|
||||||
!F3DZEX2.data.bin
|
|
||||||
!6102.bin
|
|
||||||
*.z64
|
|
||||||
*.c
|
*.c
|
||||||
|
*.log
|
||||||
*.tmp
|
*.tmp
|
||||||
*.txt
|
*.txt
|
||||||
|
*.z64
|
||||||
|
_old
|
||||||
|
microcodes
|
||||||
|
old.asm
|
||||||
|
|
|
@ -51,7 +51,7 @@ constant SP_COP_COMMAND_BUSY(13) // 0x04100014
|
||||||
constant SP_COP_PIPE_BUSY(14) // 0x04100018
|
constant SP_COP_PIPE_BUSY(14) // 0x04100018
|
||||||
constant SP_COP_TMEM_BUSY(15) // 0x0410001C
|
constant SP_COP_TMEM_BUSY(15) // 0x0410001C
|
||||||
|
|
||||||
output "F3DZEX2.boot.bin", create
|
output "bin/F3DZEX2.boot.bin", create
|
||||||
fill 0xD0
|
fill 0xD0
|
||||||
|
|
||||||
origin 0x00000000
|
origin 0x00000000
|
||||||
|
@ -126,7 +126,7 @@ label_1054:
|
||||||
nop
|
nop
|
||||||
nop
|
nop
|
||||||
|
|
||||||
output "F3DZEX2.bin", create
|
output "bin/F3DZEX2.bin", create
|
||||||
fill 0xF80
|
fill 0xF80
|
||||||
|
|
||||||
origin 0x00000000
|
origin 0x00000000
|
||||||
|
|
5
bin/.gitignore
vendored
Normal file
5
bin/.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
*
|
||||||
|
!.gitignore
|
||||||
|
# files without disassemblies yet:
|
||||||
|
!6102.bin
|
||||||
|
!F3DZEX.data.bin
|
20
main.asm
20
main.asm
|
@ -1,9 +1,9 @@
|
||||||
// built on the N64 ROM template by krom
|
// built on the N64 ROM template by krom
|
||||||
arch n64.cpu
|
arch n64.cpu
|
||||||
endian msb
|
endian msb
|
||||||
include "n64.inc"
|
include "inc/n64.inc"
|
||||||
include "n64_gfx.inc"
|
include "inc/n64_gfx.inc"
|
||||||
include "64drive.inc"
|
include "inc/64drive.inc"
|
||||||
|
|
||||||
output "test.z64", create
|
output "test.z64", create
|
||||||
fill 1052672 // Set ROM Size
|
fill 1052672 // Set ROM Size
|
||||||
|
@ -12,11 +12,11 @@ origin 0x00000000
|
||||||
base 0x80000000
|
base 0x80000000
|
||||||
|
|
||||||
include "header.asm"
|
include "header.asm"
|
||||||
insert "6102.bin"
|
insert "bin/6102.bin"
|
||||||
// after inserting the header and bootrom,
|
// after inserting the header and bootrom,
|
||||||
// origin should be at 0x1000.
|
// origin should be at 0x1000.
|
||||||
|
|
||||||
include "main.inc"
|
include "inc/main.inc"
|
||||||
|
|
||||||
include "kernel.asm"
|
include "kernel.asm"
|
||||||
|
|
||||||
|
@ -149,8 +149,8 @@ PushRSPTask:
|
||||||
jr ra
|
jr ra
|
||||||
nop
|
nop
|
||||||
|
|
||||||
align(16); insert F3DZEX_BOOT, "F3DZEX2.boot.bin"
|
align(16); insert F3DZEX_BOOT, "bin/F3DZEX2.boot.bin"
|
||||||
align(16); insert F3DZEX_DMEM, "F3DZEX2.data.bin"
|
align(16); insert F3DZEX_DMEM, "bin/F3DZEX2.data.bin"
|
||||||
align(16); insert F3DZEX_IMEM, "F3DZEX2.bin"
|
align(16); insert F3DZEX_IMEM, "bin/F3DZEX2.bin"
|
||||||
align(16); insert FONT, "dwarf.1bpp"
|
align(16); insert FONT, "res/dwarf.1bpp"
|
||||||
align(16); insert LZ, "Image.lz"
|
align(16); insert LZ, "res/Image.lz"
|
||||||
|
|
Loading…
Add table
Reference in a new issue