Remove some debug info

This commit is contained in:
Byron Lathi
2023-08-12 19:16:46 -07:00
parent 053b0d7e3e
commit 937a04c891
2 changed files with 21 additions and 16 deletions

18
sw/bios/boot2.s Normal file
View File

@@ -0,0 +1,18 @@
.importzp sp, ptr1, ptr2, ptr3, ptr4, tmp1, tmp2, tmp3, sreg
.autoimport on
.feature string_escapes
.MACPACK generic
.segment "BOOTLOADER"
_start:
lda #<str
ldx #>str
jsr _cputs
str: .byte "This is a very long message which would otherwise"
.byte "take up a lot of space in the bootsector, where space"
.byte "is at quite a premium.", $00