Merge branch 'master' of https://git.mtgames.nl/Dreaded_X/z80-fib
This commit is contained in:
commit
193066d8c3
12
src/fib.z80
12
src/fib.z80
|
@ -1,8 +1,16 @@
|
|||
.org 0x1500
|
||||
jp main
|
||||
_ram_start equ 0x1600
|
||||
|
||||
#target rom
|
||||
|
||||
#code _HOME, 0x1500 ; Non-banked part of memory
|
||||
|
||||
#data _DATA, _ram_start ; Uninitialized variables
|
||||
|
||||
#code _HOME
|
||||
main:
|
||||
init:
|
||||
ld hl, _DATA
|
||||
|
||||
ld a, (amount)
|
||||
ld d, a
|
||||
|
||||
|
|
Reference in New Issue
Block a user