home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga MA Magazine 1997 #3
/
amigamamagazinepolishissue03-1
/
kolekcje
/
ghost
/
symulatoreprom
/
z80
/
startup-z80
< prev
next >
Wrap
Text File
|
1995-05-25
|
436b
|
12 lines
; this is an example of a startup file
; the emulator searches the current directory and S: when starting
; feel free to modify this as you require
base hex ; make default base hexadecimal
debug on ; give me more info when doing things
interrupts value #10 on ; generate Z80 interrupt for every 10 amiga ticks
ld a,#24 ; stuff a few values in the system
ld b,%10101
ld hl,1234
add a,b ; any valid Z80 instructions can be used