mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-08-09 11:47:38 -05:00
This makefile can now figure graphics dependencies on its own, creates dependency files for each compilation unit and compiles everything separately. This is a proposal. Please try it out, read the Makefile to see if you get what I'm trying to do, and propose any improvements you want.
26 lines
456 B
NASM
26 lines
456 B
NASM
INCLUDE "constants.asm"
|
|
|
|
SECTION "Main Menu Definition", ROMX[$5418], BANK[$01]
|
|
|
|
MainMenuHeader:
|
|
db $40
|
|
db 0, 0, 7, 13
|
|
dw .data
|
|
db 1 ; default option
|
|
|
|
.data
|
|
db $80
|
|
db 0 ; number of options
|
|
|
|
dw $5461
|
|
db $8a, $1f
|
|
dw MainMenuStrings
|
|
|
|
MainMenuStrings: ; 01:5428
|
|
db "つづきから はじめる@"
|
|
db "さいしょから はじめる@"
|
|
db "せっていを かえる@"
|
|
db "#を あそぶ@"
|
|
db "じかんセット@"
|
|
; 01:5457
|