Skip to content

Commit fd1d407

Browse files
committed
version 0.3 added video for coco 1/2 and dragon
1 parent af47a9a commit fd1d407

File tree

7 files changed

+7
-13
lines changed

7 files changed

+7
-13
lines changed
File renamed without changes.
File renamed without changes.

constants.inc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,14 @@
22
include coco.inc
33
include coco3.inc
44
toram macro
5-
clr $200
65
lbsr ramcpy
76
fcb $16,$80,$00
8-
inc $200
97
sta RAMRAM
108
endm
119

1210
torom macro
1311
sta RAMROM
1412
fcb $16,$80,$00
15-
clr $200
16-
com $200
1713
endm
1814

1915
scr_space equ space+$40

diag.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ anykey:
102102
title: fcz "COLOR COMPUTER"
103103
fcz "DIAGNOSTICS CART"
104104
version:
105-
fcz "VERSION 0.2"
105+
fcz "VERSION 0.3"
106106
fcz "(C) 2025 ZIA COMPUTING"
107107
page0: fcz "PAGE 0 ERROR"
108108
page1: fcz "PAGE 1 ERROR"

hardware.asm

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,6 @@ memsz:
130130
beq _16k@
131131
sta ,x
132132
chkstt:
133-
lda #'1'|$40
134-
sta $220
135133
toram
136134
clr $1000
137135
clr $9000
@@ -171,8 +169,6 @@ setmmu@:
171169
inca
172170
cmpa #$40
173171
bne setmmu@
174-
lda #'2'|$40
175-
sta $220
176172
toram
177173
lda #$f4
178174
sta INIT0

menu.asm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ menu@:
2828
poll@:
2929
jsr [POLCAT]
3030
beq poll@
31-
cmpa #'D'
31+
cmpa #'E'
3232
bgt poll@
3333
suba #'A'
3434
blt poll@
@@ -40,7 +40,7 @@ poll@:
4040

4141

4242
menu_tbl:
43-
fdb showhw,memtest,print_test,romtest
43+
fdb showhw,memtest,print_test,romtest,video_test
4444

4545
test:
4646
clra
@@ -57,7 +57,7 @@ main_menu:
5757
fcz "B) MEMORY TEST"
5858
fcz "C) PRINTER TEST"
5959
fcz "D) ROM TEST"
60-
fcz "*) VIDEO TEST"
60+
fcz "E) VIDEO TEST"
6161
fcz "*) SOUND TEST"
6262
fcz "*) JOYSTICK TEST"
6363
fcz "*) KEYBOARD TEST"

video.asm

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ loop@:
1515
lda ramsize
1616
cmpa #_4k
1717
beq exit@
18-
bra mode6847
18+
bsr mode6847
1919
exit@:
20+
ldd #$0208
21+
lbsr setgfx
2022
rts
2123
coco3@:
2224
ldy #mode3

0 commit comments

Comments
 (0)