first commit
This commit is contained in:
22
test_ultra_minimal.s
Normal file
22
test_ultra_minimal.s
Normal file
@@ -0,0 +1,22 @@
|
||||
; Ultra minimal bootblock test - just show colored screen
|
||||
MACHINE 68000
|
||||
|
||||
INCDIR "c:/Users/capitano/Documents/giochino/"
|
||||
INCLUDE "custom.i"
|
||||
|
||||
ORG $20000
|
||||
|
||||
START:
|
||||
; Just set screen color and loop forever
|
||||
lea CUSTOM,a6
|
||||
|
||||
; Disable DMA and Interrupts to be safe
|
||||
move.w #$7FFF,DMACON(a6)
|
||||
move.w #$7FFF,INTENA(a6)
|
||||
|
||||
; Set background color to RED
|
||||
move.w #$F00,COLOR00(a6)
|
||||
|
||||
.loop:
|
||||
; Infinite loop - screen should be red
|
||||
bra.s .loop
|
||||
Reference in New Issue
Block a user