home *** CD-ROM | disk | FTP | other *** search
- ; 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
-