summaryrefslogtreecommitdiff
path: root/v4.0/src/DEV/DISPLAY/LCD/FONT-R3.ASM
diff options
context:
space:
mode:
Diffstat (limited to 'v4.0/src/DEV/DISPLAY/LCD/FONT-R3.ASM')
-rw-r--r--v4.0/src/DEV/DISPLAY/LCD/FONT-R3.ASM15
1 files changed, 15 insertions, 0 deletions
diff --git a/v4.0/src/DEV/DISPLAY/LCD/FONT-R3.ASM b/v4.0/src/DEV/DISPLAY/LCD/FONT-R3.ASM
new file mode 100644
index 0000000..b450e61
--- /dev/null
+++ b/v4.0/src/DEV/DISPLAY/LCD/FONT-R3.ASM
@@ -0,0 +1,15 @@
1CODE SEGMENT BYTE PUBLIC 'CODE'
2 ASSUME CS:CODE,DS:CODE
3
4BEGIN: ORG 0
5
6FNTHEAD:DB 0FFH,"FONT " ;FILE TAG
7 DB 8 DUP(0) ;RESERVED
8 DW 1 ;CNT OF POINTERS IN HEADER
9 DB 1 ;TYPE FOR INFO POINTER
10 DW OFFSET INFO,0 ;POINTER TO INFO IN FILE
11INFO: DW 5 ;COUNT OF ENTRIES
12
13CODE ENDS
14 END
15 \ No newline at end of file