mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-08-09 19:57:39 -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.
16 lines
295 B
NASM
16 lines
295 B
NASM
INCLUDE "constants.asm"
|
|
|
|
SECTION "Title screen", ROMX[$5D8C], BANK[$01]
|
|
|
|
IntroSequence:: ; 5d8c
|
|
; TODO
|
|
|
|
|
|
SECTION "Title screen TEMPORARY", ROMX[$62A5],BANK[1] ; TODO: merge this with the main section above
|
|
|
|
GameInit:: ; 62a5
|
|
call ClearWindowData
|
|
ld a, $23
|
|
ld [wce5f], a
|
|
jp IntroSequence
|