1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00
cc65/libsrc/creativision/boxchars.inc

63 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2013-12-05 11:40:44 +00:00
; Boxchars
boxchars:
2017-02-01 18:46:04 +00:00
; Vertical Line
2022-04-17 14:06:22 +00:00
.byte $18
2017-02-01 18:46:04 +00:00
.byte $18
.byte $18
.byte $18
.byte $18
.byte $18
.byte $18
.byte $18
2013-12-05 11:40:44 +00:00
2017-02-01 18:46:04 +00:00
; Horizontal Line
.byte $00
.byte $00
.byte $00
.byte $FF
.byte $00
.byte $00
.byte $00
.byte $00
2013-12-05 11:40:44 +00:00
2017-02-01 18:46:04 +00:00
; Top Left
.byte $00
.byte $00
.byte $00
.byte $1F
.byte $18
.byte $18
.byte $18
2022-04-17 14:06:22 +00:00
.byte $18
2013-12-05 11:40:44 +00:00
2017-02-01 18:46:04 +00:00
; Top Right
.byte $00
.byte $00
.byte $00
.byte $F8
.byte $18
.byte $18
.byte $18
2022-04-17 14:06:22 +00:00
.byte $18
2017-02-01 18:46:04 +00:00
; Bottom Left
.byte $18
.byte $18
.byte $18
.byte $1F
.byte $00
.byte $00
.byte $00
2022-04-17 14:06:22 +00:00
.byte $00
2017-02-01 18:46:04 +00:00
; Bottom Right
.byte $18
.byte $18
.byte $18
.byte $F8
.byte $00
.byte $00
.byte $00
2022-04-17 14:06:22 +00:00
.byte $00