first commit

This commit is contained in:
2025-12-01 18:23:49 +01:00
commit 965e10f6b2
20 changed files with 1579 additions and 0 deletions

28
boot_debug.s Normal file
View File

@@ -0,0 +1,28 @@
; Debug Bootblock - Green Screen Loop
MACHINE 68000
ORG 0
dc.b 'D','O','S',0 ; DOS magic
dc.l 0 ; Checksum
dc.l 880 ; Rootblock
; Boot code
DMACON EQU $096
COLOR00 EQU $180
boot_start:
; Direct hardware access to set color
lea $dff000,a6 ; Custom Chips Base
; Disable DMA to be safe
move.w #$7FFF,DMACON(a6)
; Set Background Color to GREEN
move.w #$0F0,COLOR00(a6)
.loop:
; Infinite loop
bra.s .loop
; Pad to 1024 bytes
dcb.b 1024-(*-0),0