summaryrefslogtreecommitdiff
path: root/video.asm
diff options
context:
space:
mode:
authorAstrid Smith2010-06-20 22:20:00 -0700
committerAstrid Smith2010-06-20 22:20:00 -0700
commit1af56604780891d08b2544f88f2cb6bafa9c44d4 (patch)
tree3a416975bbe78825404a06c6b15ddee7397e5162 /video.asm
parentcbbe6724aa1cdc0ebf260ecda36b77bf72a9e580 (diff)
Added video routines, in C
Diffstat (limited to 'video.asm')
-rw-r--r--video.asm21
1 files changed, 0 insertions, 21 deletions
diff --git a/video.asm b/video.asm
deleted file mode 100644
index b47d06c..0000000
--- a/video.asm
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-video_row: dc.b 0 ; $01 if in row mode - x
- ; $00 if in column mode - y
-video_increment: dc.b 0 ; $02 if in increment mode
- ; $00 if in decrement mode
-video_enabled: dc.b 0 ; $20 if screen is blanked
-video_6bit: dc.b 0 ; $40 if in 8 bit mode, $00 if in 6
- ; bit mode
-video_busy: dc.b 0 ; always 0
-
-video_cur_row: dc.b 0
-video_cur_col: dc.b 0
-
- EVEN
-
-video_read:
- rts
-
-video_write:
- rts