avr: more general approach to fonts.
This commit is contained in:
@@ -6,11 +6,15 @@
|
|||||||
defs.asm
|
defs.asm
|
||||||
font8x8.asm
|
font8x8.asm
|
||||||
font6x8.asm
|
font6x8.asm
|
||||||
|
font12x16.asm
|
||||||
|
font12x20.asm
|
||||||
font16x26.asm
|
font16x26.asm
|
||||||
font1.asm
|
font1.asm
|
||||||
font2.asm
|
font2.asm
|
||||||
font3.asm
|
font3.asm
|
||||||
font4.asm
|
font4.asm
|
||||||
|
font5.asm
|
||||||
|
main.asm
|
||||||
</extradist>
|
</extradist>
|
||||||
|
|
||||||
</gwbuild>
|
</gwbuild>
|
||||||
|
|||||||
@@ -11,13 +11,22 @@
|
|||||||
#define AVR_MODULES_FONT_DEFS
|
#define AVR_MODULES_FONT_DEFS
|
||||||
|
|
||||||
|
|
||||||
.equ FONT_OFFS_RENDERFN_LOW = 0
|
.equ FONT_OFFS_HANDLERFN_LOW = 0
|
||||||
.equ FONT_OFFS_RENDERFN_HI = 1
|
.equ FONT_OFFS_HANDLERFN_HI = 1
|
||||||
.equ FONT_OFFS_DATASIZE = 2 ; one byte used, one byte reserved
|
.equ FONT_OFFS_DATASIZE = 2 ; one byte used, one byte reserved
|
||||||
.equ FONT_OFFS_WIDTH = 4
|
.equ FONT_OFFS_WIDTH = 4
|
||||||
.equ FONT_OFFS_HEIGHT = 5
|
.equ FONT_OFFS_HEIGHT = 5
|
||||||
.equ FONT_OFFS_FIRSTCHAR = 6
|
.equ FONT_OFFS_FIRSTCHAR = 6
|
||||||
.equ FONT_OFFS_NUMCHARS = 7
|
.equ FONT_OFFS_NUMCHARS = 7
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.equ FONT_FN_RENDER = 0
|
||||||
|
.equ FONT_FN_GETCHARWIDTH = 1
|
||||||
|
.equ FONT_FN_GETCHARHEIGHT = 2
|
||||||
|
.equ FONT_FN_GETSTRINGWIDTH = 3
|
||||||
|
.equ FONT_FN_GETSTRINGHEIGHT = 4
|
||||||
|
.equ FONT_FN_NEXT = 5
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
|
|
||||||
font1_8x8:
|
font1_8x8:
|
||||||
; header
|
; header
|
||||||
.dw font8x8MonoRenderCharacter ; renderFn
|
.dw font6x8MonoHandlerFn ; handlerFn
|
||||||
.db 128, 0 ; needed buffer size
|
.db 128, 0 ; needed buffer size
|
||||||
.db 8, 8 ; width, height of chars
|
.db 8, 8 ; width, height of chars
|
||||||
.db 32, 64 ; first char, num of chars in font
|
.db 32, 64 ; first char, num of chars in font
|
||||||
|
|||||||
117
avr/modules/lcd2/font/font12x16.asm
Normal file
117
avr/modules/lcd2/font/font12x16.asm
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
; ***************************************************************************
|
||||||
|
; copyright : (C) 2025 by Martin Preuss
|
||||||
|
; email : martin@libchipcard.de
|
||||||
|
;
|
||||||
|
; ***************************************************************************
|
||||||
|
; * This file is part of the project "AqHome". *
|
||||||
|
; * Please see toplevel file COPYING of that project for license details. *
|
||||||
|
; ***************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
; ***************************************************************************
|
||||||
|
; code
|
||||||
|
|
||||||
|
.cseg
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine font12x16MonoHandlerFn
|
||||||
|
;
|
||||||
|
; Handler for 12x16 Mono Fonts
|
||||||
|
;
|
||||||
|
|
||||||
|
font12x16MonoHandlerFn:
|
||||||
|
cpi r23, FONT_FN_RENDER
|
||||||
|
breq font12x16MonoRenderCharacter
|
||||||
|
rjmp FONT_GenericHandler
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine font12x16RenderCharacter
|
||||||
|
|
||||||
|
; @param R16 character to write
|
||||||
|
; @param R1:R0 background color
|
||||||
|
; @param R3:R2 foreground color
|
||||||
|
; @param Z pointer to font
|
||||||
|
; @param X pointer to RAM to store data to
|
||||||
|
; @param r18 char width in pixel
|
||||||
|
; @param r19 char height in pixel
|
||||||
|
; @clobbers r17, r18, r23, r24, r25, x
|
||||||
|
|
||||||
|
font12x16MonoRenderCharacter:
|
||||||
|
push zl
|
||||||
|
push zh
|
||||||
|
rcall font12x16GetCharPosInFont ; (r17, r24, r25, z)
|
||||||
|
ldi r25, 16 ; 16 bytes height
|
||||||
|
font12x16MonoRenderCharacter_loop1:
|
||||||
|
ldi r24, 12 ; 16 bits
|
||||||
|
ldi r23, 8
|
||||||
|
lpm r17, Z+
|
||||||
|
font12x16MonoRenderCharacter_loop2:
|
||||||
|
dec r23
|
||||||
|
brne font12x16MonoRenderCharacter_haveByte
|
||||||
|
lpm r17, Z+
|
||||||
|
ldi r23, 8
|
||||||
|
font12x16MonoRenderCharacter_haveByte:
|
||||||
|
lsr r17
|
||||||
|
brcs font12x16MonoRenderCharacter_writeForeground
|
||||||
|
st X+, r0
|
||||||
|
st X+, r1
|
||||||
|
rjmp font12x16MonoRenderCharacter_loop2end
|
||||||
|
font12x16MonoRenderCharacter_writeForeground:
|
||||||
|
st X+, r2
|
||||||
|
st X+, r3
|
||||||
|
font12x16MonoRenderCharacter_loop2end:
|
||||||
|
dec r24
|
||||||
|
brne font12x16MonoRenderCharacter_loop2
|
||||||
|
dec r25
|
||||||
|
brne font12x16MonoRenderCharacter_loop1
|
||||||
|
ldi r18, 12
|
||||||
|
ldi r19, 16
|
||||||
|
pop zh
|
||||||
|
pop zl
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine font12x16GetCharPosInFont
|
||||||
|
|
||||||
|
; @param R16 character to write
|
||||||
|
; @param Z pointer to font
|
||||||
|
; @return Z pointer to begin of char data
|
||||||
|
; @clobbers r17, r24, r25, z
|
||||||
|
|
||||||
|
font12x16GetCharPosInFont:
|
||||||
|
mov r24, r16
|
||||||
|
adiw zh:zl, FONT_OFFS_FIRSTCHAR
|
||||||
|
lpm r24, Z+ ; first char num
|
||||||
|
lpm r25, Z+ ; num of chars
|
||||||
|
sub r16, r24
|
||||||
|
brcs font12x16GetCharPosInFont_ret
|
||||||
|
cp r16, r25
|
||||||
|
brcc font12x16GetCharPosInFont_ret
|
||||||
|
mov r25, r16 ; x256
|
||||||
|
clr r24
|
||||||
|
|
||||||
|
lsr r25 ; x128
|
||||||
|
ror r24
|
||||||
|
|
||||||
|
lsr r25 ; x64
|
||||||
|
ror r24
|
||||||
|
|
||||||
|
lsr r25 ; x32
|
||||||
|
ror r24
|
||||||
|
|
||||||
|
add zl, r24
|
||||||
|
adc zh, r25
|
||||||
|
font12x16GetCharPosInFont_ret:
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
129
avr/modules/lcd2/font/font12x20.asm
Normal file
129
avr/modules/lcd2/font/font12x20.asm
Normal file
@@ -0,0 +1,129 @@
|
|||||||
|
; ***************************************************************************
|
||||||
|
; copyright : (C) 2025 by Martin Preuss
|
||||||
|
; email : martin@libchipcard.de
|
||||||
|
;
|
||||||
|
; ***************************************************************************
|
||||||
|
; * This file is part of the project "AqHome". *
|
||||||
|
; * Please see toplevel file COPYING of that project for license details. *
|
||||||
|
; ***************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
; ***************************************************************************
|
||||||
|
; code
|
||||||
|
|
||||||
|
.cseg
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine font12x20MonoHandlerFn
|
||||||
|
;
|
||||||
|
; Handler for 12x20 Mono Fonts
|
||||||
|
;
|
||||||
|
|
||||||
|
font12x20MonoHandlerFn:
|
||||||
|
cpi r23, FONT_FN_RENDER
|
||||||
|
breq font12x20MonoRenderCharacter
|
||||||
|
bigjmp FONT_GenericHandler
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine font12x20RenderCharacter
|
||||||
|
|
||||||
|
; @param R16 character to write
|
||||||
|
; @param R1:R0 background color
|
||||||
|
; @param R3:R2 foreground color
|
||||||
|
; @param Z pointer to font
|
||||||
|
; @param X pointer to RAM to store data to
|
||||||
|
; @param r18 char width in pixel
|
||||||
|
; @param r19 char height in pixel
|
||||||
|
; @clobbers r17, r18, r23, r24, r25, x
|
||||||
|
|
||||||
|
font12x20MonoRenderCharacter:
|
||||||
|
push zl
|
||||||
|
push zh
|
||||||
|
rcall font12x20GetCharPosInFont ; (r17, r24, r25, z)
|
||||||
|
ldi r25, 20 ; 20 bytes height
|
||||||
|
font12x20MonoRenderCharacter_loop1:
|
||||||
|
ldi r24, 12 ; 16 bits
|
||||||
|
ldi r23, 8
|
||||||
|
lpm r17, Z+
|
||||||
|
font12x20MonoRenderCharacter_loop2:
|
||||||
|
dec r23
|
||||||
|
brne font12x20MonoRenderCharacter_haveByte
|
||||||
|
lpm r17, Z+
|
||||||
|
ldi r23, 8
|
||||||
|
font12x20MonoRenderCharacter_haveByte:
|
||||||
|
lsr r17
|
||||||
|
brcs font12x20MonoRenderCharacter_writeForeground
|
||||||
|
st X+, r0
|
||||||
|
st X+, r1
|
||||||
|
rjmp font12x20MonoRenderCharacter_loop2end
|
||||||
|
font12x20MonoRenderCharacter_writeForeground:
|
||||||
|
st X+, r2
|
||||||
|
st X+, r3
|
||||||
|
font12x20MonoRenderCharacter_loop2end:
|
||||||
|
dec r24
|
||||||
|
brne font12x20MonoRenderCharacter_loop2
|
||||||
|
dec r25
|
||||||
|
brne font12x20MonoRenderCharacter_loop1
|
||||||
|
ldi r18, 12
|
||||||
|
ldi r19, 20
|
||||||
|
pop zh
|
||||||
|
pop zl
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine font12x20GetCharPosInFont
|
||||||
|
|
||||||
|
; @param R16 character to write
|
||||||
|
; @param Z pointer to font
|
||||||
|
; @return Z pointer to begin of char data
|
||||||
|
; @clobbers r17, r24, r25, z
|
||||||
|
|
||||||
|
font12x20GetCharPosInFont:
|
||||||
|
mov r24, r16
|
||||||
|
adiw zh:zl, FONT_OFFS_FIRSTCHAR
|
||||||
|
lpm r24, Z+ ; first char num
|
||||||
|
lpm r25, Z+ ; num of chars
|
||||||
|
sub r16, r24
|
||||||
|
brcs font12x20GetCharPosInFont_ret
|
||||||
|
cp r16, r25
|
||||||
|
brcc font12x20GetCharPosInFont_ret
|
||||||
|
|
||||||
|
mov r24, r16
|
||||||
|
clr r25
|
||||||
|
|
||||||
|
lsl r24 ; x2
|
||||||
|
rol r25
|
||||||
|
|
||||||
|
lsl r24 ; x4
|
||||||
|
rol r25
|
||||||
|
|
||||||
|
add r24, r16 ; x5
|
||||||
|
adc r25, r16
|
||||||
|
sub r25, r16
|
||||||
|
|
||||||
|
lsl r24 ; x10
|
||||||
|
rol r25
|
||||||
|
|
||||||
|
lsl r24 ; x20
|
||||||
|
rol r25
|
||||||
|
|
||||||
|
lsl r24 ; x40
|
||||||
|
rol r25
|
||||||
|
|
||||||
|
add zl, r24
|
||||||
|
adc zh, r25
|
||||||
|
font12x20GetCharPosInFont_ret:
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -15,6 +15,20 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine font16x26MonoHandlerFn
|
||||||
|
;
|
||||||
|
; Handler for 16x26 Mono Fonts
|
||||||
|
;
|
||||||
|
|
||||||
|
font16x26MonoHandlerFn:
|
||||||
|
cpi r23, FONT_FN_RENDER
|
||||||
|
breq font16x26MonoRenderCharacter
|
||||||
|
rjmp FONT_GenericHandler
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
; ---------------------------------------------------------------------------
|
; ---------------------------------------------------------------------------
|
||||||
; @routine font16x26RenderCharacter
|
; @routine font16x26RenderCharacter
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
|
|
||||||
font2_6x8:
|
font2_6x8:
|
||||||
; header
|
; header
|
||||||
.dw font6x8MonoRenderCharacter ; renderFn
|
.dw font6x8MonoHandlerFn ; handlerFn
|
||||||
.db 96, 0 ; needed buffer size
|
.db 96, 0 ; needed buffer size
|
||||||
.db 6, 8 ; width, height of chars
|
.db 6, 8 ; width, height of chars
|
||||||
.db 32, 224 ; first char, num of chars in font
|
.db 32, 224 ; first char, num of chars in font
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
|
|
||||||
font3_16x26:
|
font3_16x26:
|
||||||
; header
|
; header
|
||||||
.dw font16x26MonoRenderCharacter ; renderFn
|
.dw font16x26MonoHandlerFn ; handlerFn
|
||||||
.dw 832 ; needed buffer size
|
.dw 832 ; needed buffer size
|
||||||
.db 16, 26 ; width, height of chars
|
.db 16, 26 ; width, height of chars
|
||||||
.db 32, 224 ; first char, num of chars in font
|
.db 32, 224 ; first char, num of chars in font
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
|
|
||||||
font4_12x16:
|
font4_12x16:
|
||||||
; header
|
; header
|
||||||
.dw font12x16MonoRenderCharacter ; renderFn
|
.dw font12x16MonoHandlerFn ; handlerFn
|
||||||
.dw 384 ; needed buffer size
|
.dw 384 ; needed buffer size
|
||||||
.db 12, 16 ; width, height of chars
|
.db 12, 16 ; width, height of chars
|
||||||
.db 32, 224 ; first char, num of chars in font
|
.db 32, 224 ; first char, num of chars in font
|
||||||
|
|||||||
258
avr/modules/lcd2/font/font5.asm
Normal file
258
avr/modules/lcd2/font/font5.asm
Normal file
@@ -0,0 +1,258 @@
|
|||||||
|
; ***************************************************************************
|
||||||
|
; copyright : (C) 2025 by Martin Preuss
|
||||||
|
; email : martin@libchipcard.de
|
||||||
|
;
|
||||||
|
; ***************************************************************************
|
||||||
|
; * This file is part of the project "AqHome". *
|
||||||
|
; * Please see toplevel file COPYING of that project for license details. *
|
||||||
|
; ***************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
; ***************************************************************************
|
||||||
|
; This is a font from the project LCD_fonts at
|
||||||
|
; https://github.com/basti79/LCD-fonts.git
|
||||||
|
; which in turn is based on a post by Benedikt K. in a forum post on
|
||||||
|
; https://www.mikrocontroller.net/topic/54860
|
||||||
|
; ***************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ***************************************************************************
|
||||||
|
; code
|
||||||
|
|
||||||
|
.cseg
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
font5_12x20:
|
||||||
|
; header
|
||||||
|
.dw font12x20MonoHandlerFn ; handlerFn
|
||||||
|
.dw 480 ; needed buffer size
|
||||||
|
.db 12, 20 ; width, height of chars
|
||||||
|
.db 32, 224 ; first char, num of chars in font
|
||||||
|
; data (16x20_horizontal_LSB_2)
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x20
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x21
|
||||||
|
.db 0x00,0x00,0x8C,0x01,0x8C,0x01,0x8C,0x01,0x8C,0x01,0x8C,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x22
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x20,0x02,0x20,0x02,0x10,0x01,0x10,0x01,0x10,0x01,0xFE,0x0F,0x88,0x00,0x88,0x00,0x88,0x00,0xFE,0x07,0x44,0x00,0x44,0x00,0x22,0x00,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x23
|
||||||
|
.db 0x00,0x00,0x40,0x00,0xF0,0x01,0xF8,0x03,0x4C,0x02,0x4C,0x00,0x4C,0x00,0x78,0x00,0x70,0x00,0xC0,0x01,0xC0,0x01,0x40,0x03,0x40,0x03,0x44,0x03,0xFC,0x01,0xF8,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x24
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x1E,0x08,0x33,0x04,0x33,0x02,0x33,0x01,0xB3,0x00,0xB3,0x00,0x5E,0x00,0xA0,0x07,0xD0,0x0C,0xD0,0x0C,0xC8,0x0C,0xC4,0x0C,0xC2,0x0C,0x81,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x25
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xF0,0x00,0xF8,0x01,0x98,0x01,0x98,0x01,0xD8,0x00,0x70,0x00,0x3C,0x00,0x66,0x0C,0xE3,0x0C,0xC3,0x0C,0x83,0x07,0x87,0x07,0xFE,0x07,0xFC,0x0E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x26
|
||||||
|
.db 0x00,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x27
|
||||||
|
.db 0x00,0x00,0x00,0x03,0xC0,0x03,0xE0,0x00,0x60,0x00,0x30,0x00,0x30,0x00,0x18,0x00,0x18,0x00,0x18,0x00,0x18,0x00,0x18,0x00,0x18,0x00,0x30,0x00,0x30,0x00,0x60,0x00,0xE0,0x00,0xC0,0x03,0x00,0x03,0x00,0x00, ; 0x28
|
||||||
|
.db 0x00,0x00,0x0C,0x00,0x3C,0x00,0x70,0x00,0x60,0x00,0xC0,0x00,0xC0,0x00,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0xC0,0x00,0xC0,0x00,0x60,0x00,0x70,0x00,0x3C,0x00,0x0C,0x00,0x00,0x00, ; 0x29
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x30,0x00,0x30,0x00,0x36,0x03,0xCE,0x03,0x00,0x00,0xD8,0x00,0x9C,0x01,0x88,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x2A
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0xFE,0x07,0xFE,0x07,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x2B
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x70,0x00,0x70,0x00,0x60,0x00,0x20,0x00,0x30,0x00,0x00,0x00, ; 0x2C
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFC,0x03,0xFC,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x2D
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x70,0x00,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x2E
|
||||||
|
.db 0x00,0x00,0x00,0x06,0x00,0x03,0x00,0x03,0x80,0x01,0x80,0x01,0x80,0x01,0xC0,0x00,0xC0,0x00,0x60,0x00,0x60,0x00,0x30,0x00,0x30,0x00,0x18,0x00,0x18,0x00,0x18,0x00,0x0C,0x00,0x0C,0x00,0x06,0x00,0x00,0x00, ; 0x2F
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xF0,0x00,0xF8,0x01,0x0C,0x03,0x0C,0x03,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x0C,0x03,0x0C,0x03,0xF8,0x01,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x30
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x60,0x00,0x7C,0x00,0x66,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0xFE,0x07,0xFE,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x31
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xF8,0x00,0xFC,0x01,0x84,0x03,0x00,0x03,0x00,0x03,0x00,0x03,0x80,0x01,0xC0,0x00,0x60,0x00,0x30,0x00,0x18,0x00,0x0C,0x00,0xFC,0x03,0xFC,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x32
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xF8,0x00,0xFC,0x03,0x04,0x03,0x00,0x03,0x80,0x01,0xF8,0x00,0xF8,0x00,0x80,0x01,0x00,0x03,0x00,0x03,0x00,0x03,0x84,0x03,0xFC,0x01,0xFC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x33
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x80,0x01,0xC0,0x01,0xE0,0x01,0xA0,0x01,0x90,0x01,0x98,0x01,0x8C,0x01,0x84,0x01,0xFE,0x07,0xFE,0x07,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x34
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xF8,0x03,0xF8,0x03,0x18,0x00,0x18,0x00,0x18,0x00,0x18,0x00,0xF8,0x00,0xF8,0x01,0x80,0x03,0x00,0x03,0x00,0x03,0x80,0x03,0xF8,0x01,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x35
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xF0,0x00,0xF8,0x01,0x1C,0x01,0x0C,0x00,0x06,0x00,0xE6,0x00,0xF6,0x01,0x8E,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x8C,0x03,0xFC,0x01,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x36
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xFC,0x07,0xFC,0x07,0x00,0x06,0x00,0x03,0x00,0x01,0x80,0x01,0xC0,0x00,0x40,0x00,0x60,0x00,0x20,0x00,0x30,0x00,0x30,0x00,0x18,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x37
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xF0,0x00,0xFC,0x01,0x8C,0x01,0x8C,0x01,0x9C,0x01,0xF8,0x00,0x70,0x00,0xEC,0x01,0x86,0x03,0x06,0x03,0x06,0x03,0x8E,0x03,0xFC,0x01,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x38
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x78,0x00,0xFC,0x01,0x8E,0x01,0x06,0x03,0x06,0x03,0x06,0x03,0x8E,0x03,0x7C,0x03,0x38,0x03,0x00,0x03,0x80,0x01,0xC4,0x01,0xFC,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x39
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x70,0x00,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x70,0x00,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x3A
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x70,0x00,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x70,0x00,0x70,0x00,0x60,0x00,0x20,0x00,0x30,0x00,0x00,0x00, ; 0x3B
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x07,0xC0,0x03,0xE0,0x00,0x38,0x00,0x0E,0x00,0x38,0x00,0xE0,0x00,0xC0,0x03,0x00,0x07,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x3C
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x07,0xFE,0x07,0x00,0x00,0x00,0x00,0xFE,0x07,0xFE,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x3D
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x0E,0x00,0x3C,0x00,0x70,0x00,0xC0,0x01,0x00,0x07,0xC0,0x01,0x70,0x00,0x3C,0x00,0x0E,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x3E
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xFE,0x00,0xFE,0x03,0x82,0x03,0x00,0x03,0x00,0x03,0x80,0x01,0xC0,0x00,0x60,0x00,0x30,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x3F
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xF0,0x01,0x18,0x03,0x0C,0x06,0xC6,0x07,0x63,0x06,0x33,0x06,0x33,0x06,0x33,0x07,0x33,0x07,0xF3,0x06,0x66,0x0E,0x06,0x00,0x0C,0x00,0xF0,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x40
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0xF0,0x00,0xF0,0x00,0xD0,0x00,0x98,0x01,0x98,0x01,0x8C,0x03,0x0C,0x03,0xFC,0x03,0xFE,0x07,0x06,0x06,0x06,0x06,0x03,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x41
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x00,0xFE,0x01,0x86,0x01,0x86,0x01,0xC6,0x00,0x7E,0x00,0xFE,0x00,0x86,0x01,0x06,0x03,0x06,0x03,0x06,0x03,0xFE,0x01,0xFE,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x42
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x03,0xF8,0x07,0x1C,0x04,0x0C,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0x0C,0x00,0x3C,0x04,0xF8,0x07,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x43
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x00,0xFE,0x01,0x86,0x03,0x06,0x07,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x03,0x86,0x03,0xFE,0x01,0xFE,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x44
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xFC,0x07,0xFC,0x07,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x03,0xFC,0x03,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x07,0xFC,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x45
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xFC,0x07,0xFC,0x07,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x03,0xFC,0x03,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x46
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x03,0xF8,0x07,0x1C,0x04,0x0C,0x00,0x06,0x00,0x06,0x00,0x86,0x07,0x86,0x07,0x06,0x06,0x0C,0x06,0x1C,0x06,0xF8,0x07,0xE0,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x47
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0xFE,0x03,0xFE,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x48
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x01,0xFE,0x01,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0xFE,0x01,0xFE,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x49
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xF8,0x01,0xF8,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0xC0,0x01,0xFC,0x00,0x7C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x4A
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x07,0x86,0x03,0xC6,0x01,0xE6,0x00,0x66,0x00,0x36,0x00,0x3E,0x00,0x76,0x00,0xE6,0x00,0xC6,0x01,0x86,0x03,0x06,0x07,0x06,0x0E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x4B
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x07,0xFC,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x4C
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x07,0x07,0x07,0x8F,0x07,0x8B,0x06,0x8B,0x06,0xDB,0x06,0x53,0x06,0x53,0x06,0x73,0x06,0x23,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x4D
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x0E,0x06,0x0E,0x06,0x1E,0x06,0x1E,0x06,0x36,0x06,0x76,0x06,0x66,0x06,0xE6,0x06,0xC6,0x06,0x86,0x07,0x86,0x07,0x06,0x07,0x06,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x4E
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xF8,0x00,0xFC,0x01,0x8E,0x03,0x07,0x07,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x07,0x07,0x8E,0x03,0xFC,0x01,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x4F
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xFC,0x01,0xFC,0x03,0x0C,0x07,0x0C,0x06,0x0C,0x06,0x0C,0x07,0xFC,0x03,0xFC,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x50
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xF8,0x00,0xFC,0x01,0x8E,0x03,0x07,0x07,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x06,0x03,0x8E,0x03,0xFC,0x01,0xF8,0x00,0x80,0x03,0x00,0x0F,0x00,0x04,0x00,0x00, ; 0x51
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x00,0xFE,0x01,0x86,0x01,0x86,0x01,0x86,0x01,0xC6,0x01,0xFE,0x00,0x7E,0x00,0xE6,0x00,0xC6,0x01,0x86,0x03,0x06,0x07,0x06,0x0E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x52
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xF8,0x00,0xFC,0x01,0x06,0x01,0x06,0x00,0x0E,0x00,0x3C,0x00,0xF8,0x00,0xC0,0x03,0x00,0x03,0x00,0x03,0x86,0x03,0xFE,0x01,0xFC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x53
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0x0F,0xFF,0x0F,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x54
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x8E,0x03,0xFC,0x01,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x55
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x0C,0x06,0x06,0x06,0x06,0x0E,0x06,0x0C,0x03,0x0C,0x03,0x1C,0x03,0x98,0x01,0xB8,0x01,0xB0,0x00,0xF0,0x00,0xF0,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x56
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x0C,0x03,0x0C,0x03,0x0C,0x62,0x04,0x62,0x04,0xE2,0x06,0xF6,0x06,0x96,0x06,0x96,0x06,0x96,0x03,0x9C,0x03,0x9C,0x03,0x0C,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x57
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x0E,0x0E,0x06,0x0C,0x03,0x98,0x01,0xF8,0x00,0xF0,0x00,0x60,0x00,0xF0,0x00,0xD8,0x01,0x98,0x01,0x0C,0x03,0x06,0x07,0x03,0x0E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x58
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x0C,0x06,0x06,0x0C,0x03,0x1C,0x03,0x98,0x01,0xF0,0x00,0xF0,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x59
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x07,0xFE,0x07,0x00,0x06,0x00,0x03,0x80,0x01,0xC0,0x00,0x60,0x00,0x30,0x00,0x18,0x00,0x0C,0x00,0x06,0x00,0xFE,0x07,0xFE,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x5A
|
||||||
|
.db 0x00,0x00,0xF0,0x03,0xF0,0x03,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0xF0,0x03,0xF0,0x03,0x00,0x00, ; 0x5B
|
||||||
|
.db 0x00,0x00,0x06,0x00,0x0C,0x00,0x0C,0x00,0x18,0x00,0x18,0x00,0x18,0x00,0x30,0x00,0x30,0x00,0x60,0x00,0x60,0x00,0xC0,0x00,0xC0,0x00,0x80,0x01,0x80,0x01,0x80,0x01,0x00,0x03,0x00,0x03,0x00,0x06,0x00,0x00, ; 0x5C
|
||||||
|
.db 0x00,0x00,0xFC,0x00,0xFC,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xFC,0x00,0xFC,0x00,0x00,0x00, ; 0x5D
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x40,0x00,0x40,0x00,0xE0,0x00,0xA0,0x00,0xB0,0x00,0xB0,0x01,0x18,0x01,0x18,0x03,0x0C,0x03,0x0C,0x02,0x06,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x5E
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0x0F,0xFF,0x0F,0x00,0x00,0x00,0x00, ; 0x5F
|
||||||
|
.db 0x60,0x00,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x60
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF8,0x01,0xFC,0x03,0x04,0x03,0x00,0x03,0x00,0x03,0xF8,0x03,0x0C,0x03,0x06,0x03,0x86,0x03,0xFE,0x0F,0x7C,0x0E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x61
|
||||||
|
.db 0x00,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0xE6,0x00,0xF6,0x01,0x9E,0x03,0x0E,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x8E,0x01,0xFE,0x01,0xF6,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x62
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF0,0x01,0xFC,0x03,0x1C,0x02,0x0E,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0x0E,0x00,0x1C,0x00,0xFC,0x03,0xF0,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x63
|
||||||
|
.db 0x00,0x00,0x00,0x03,0x00,0x03,0x00,0x03,0x00,0x03,0x78,0x03,0xFC,0x03,0x8C,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x8E,0x03,0xFC,0x03,0x38,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x64
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF0,0x00,0xFC,0x01,0x8C,0x03,0x06,0x03,0xFE,0x03,0xFE,0x03,0x06,0x00,0x06,0x00,0x0C,0x02,0xFC,0x03,0xF0,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x65
|
||||||
|
.db 0x00,0x00,0xE0,0x07,0xF0,0x07,0x30,0x00,0x30,0x00,0xFE,0x07,0xFE,0x07,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x66
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x03,0xFC,0x03,0x8C,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x8E,0x03,0xFC,0x03,0x78,0x03,0x00,0x03,0x84,0x03,0xFC,0x01,0xF8,0x00, ; 0x67
|
||||||
|
.db 0x00,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0xE6,0x01,0xF6,0x03,0x1E,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x68
|
||||||
|
.db 0x00,0x00,0xC0,0x00,0xC0,0x00,0x00,0x00,0x00,0x00,0xFC,0x00,0xFC,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x69
|
||||||
|
.db 0x00,0x00,0x80,0x01,0x80,0x01,0x00,0x00,0x00,0x00,0xF8,0x01,0xF8,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0x80,0x01,0xC0,0x01,0xFC,0x00,0x7C,0x00, ; 0x6A
|
||||||
|
.db 0x00,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x07,0x8C,0x03,0xCC,0x01,0xEC,0x00,0x6C,0x00,0x7C,0x00,0xEC,0x00,0xCC,0x01,0x8C,0x03,0x0C,0x07,0x0C,0x0E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x6B
|
||||||
|
.db 0x00,0x00,0xFC,0x00,0xFC,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x6C
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9B,0x03,0xFF,0x07,0x77,0x06,0x33,0x06,0x33,0x06,0x33,0x06,0x33,0x06,0x33,0x06,0x33,0x06,0x33,0x06,0x33,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x6D
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE6,0x01,0xF6,0x03,0x1E,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x6E
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF0,0x00,0xFC,0x03,0x0C,0x03,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x0C,0x03,0xFC,0x03,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x6F
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF6,0x00,0xFE,0x01,0x8E,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x8E,0x01,0xFE,0x01,0xF6,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0x06,0x00, ; 0x70
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x03,0xFC,0x03,0x8C,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x8E,0x03,0x7C,0x03,0x38,0x03,0x00,0x03,0x00,0x03,0x00,0x03,0x00,0x03, ; 0x71
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xCC,0x03,0xEC,0x03,0x3C,0x02,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x72
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF8,0x01,0xFC,0x01,0x0C,0x00,0x0C,0x00,0x3C,0x00,0xF0,0x01,0x80,0x03,0x00,0x03,0x04,0x03,0xFC,0x01,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x73
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x30,0x00,0xFE,0x07,0xFE,0x07,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0xF0,0x07,0xE0,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x74
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0xC6,0x03,0x7E,0x03,0x3C,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x75
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x06,0x0C,0x02,0x0C,0x03,0x0C,0x03,0x18,0x01,0x98,0x01,0x98,0x01,0xB0,0x00,0xF0,0x00,0xF0,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x76
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x0C,0x63,0x0C,0x63,0x0C,0xE2,0x04,0xF6,0x04,0x96,0x04,0x96,0x06,0x96,0x07,0x9C,0x03,0x0C,0x03,0x0C,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x77
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0E,0x07,0x0C,0x03,0x98,0x01,0xB8,0x00,0xF0,0x00,0x60,0x00,0xF0,0x00,0xD8,0x01,0x98,0x01,0x0C,0x03,0x06,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x78
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x06,0x0C,0x02,0x0C,0x03,0x1C,0x03,0x98,0x01,0x98,0x01,0xB0,0x00,0xF0,0x00,0xF0,0x00,0x60,0x00,0x60,0x00,0x20,0x00,0x30,0x00,0x3C,0x00,0x1C,0x00, ; 0x79
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x03,0xFE,0x03,0x00,0x03,0x80,0x01,0xC0,0x00,0x60,0x00,0x30,0x00,0x18,0x00,0x0C,0x00,0xFE,0x03,0xFE,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x7A
|
||||||
|
.db 0x00,0x00,0xC0,0x03,0xE0,0x03,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x3C,0x00,0x3C,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0xE0,0x03,0xC0,0x03,0x00,0x00, ; 0x7B
|
||||||
|
.db 0x00,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x00,0x00, ; 0x7C
|
||||||
|
.db 0x00,0x00,0x3C,0x00,0x7C,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0xC0,0x03,0xC0,0x03,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x7C,0x00,0x3C,0x00,0x00,0x00, ; 0x7D
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3C,0x04,0xFE,0x07,0xC2,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x7E
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xFC,0x03,0x04,0x02,0x04,0x02,0x04,0x02,0x04,0x02,0x04,0x02,0x04,0x02,0x04,0x02,0x04,0x02,0x04,0x02,0x04,0x02,0x04,0x02,0xFC,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x7F
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x03,0xF8,0x07,0x1C,0x04,0x0C,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0x0C,0x00,0x3C,0x04,0xF8,0x07,0xE0,0x03,0x40,0x00,0xE0,0x00,0x80,0x01,0xE0,0x00, ; 0x80
|
||||||
|
.db 0x00,0x00,0x98,0x01,0x98,0x01,0x00,0x00,0x00,0x00,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0xC6,0x03,0x7E,0x03,0x3C,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x81
|
||||||
|
.db 0x80,0x01,0xC0,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0xF0,0x00,0xFC,0x01,0x8C,0x03,0x06,0x03,0xFE,0x03,0xFE,0x03,0x06,0x00,0x06,0x00,0x0C,0x02,0xFC,0x03,0xF0,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x82
|
||||||
|
.db 0xE0,0x00,0xB0,0x01,0x18,0x03,0x00,0x00,0x00,0x00,0xF8,0x01,0xFC,0x03,0x04,0x03,0x00,0x03,0x00,0x03,0xF8,0x03,0x0C,0x03,0x06,0x03,0x86,0x03,0xFE,0x0F,0x7C,0x0E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x83
|
||||||
|
.db 0x00,0x00,0x98,0x01,0x98,0x01,0x00,0x00,0x00,0x00,0xF8,0x01,0xFC,0x03,0x04,0x03,0x00,0x03,0x00,0x03,0xF8,0x03,0x0C,0x03,0x06,0x03,0x86,0x03,0xFE,0x0F,0x7C,0x0E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x84
|
||||||
|
.db 0x18,0x00,0x30,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0xF8,0x01,0xFC,0x03,0x04,0x03,0x00,0x03,0x00,0x03,0xF8,0x03,0x0C,0x03,0x06,0x03,0x86,0x03,0xFE,0x0F,0x7C,0x0E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x85
|
||||||
|
.db 0x90,0x00,0x90,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0xF8,0x01,0xFC,0x03,0x04,0x03,0x00,0x03,0x00,0x03,0xF8,0x03,0x0C,0x03,0x06,0x03,0x86,0x03,0xFE,0x0F,0x7C,0x0E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x86
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF0,0x01,0xFC,0x03,0x1C,0x02,0x0E,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0x0E,0x00,0x1C,0x00,0xFC,0x03,0xF0,0x01,0x20,0x00,0x70,0x00,0xC0,0x00,0x70,0x00, ; 0x87
|
||||||
|
.db 0xE0,0x00,0xB0,0x01,0x18,0x03,0x00,0x00,0x00,0x00,0xF0,0x00,0xFC,0x01,0x8C,0x03,0x06,0x03,0xFE,0x03,0xFE,0x03,0x06,0x00,0x06,0x00,0x0C,0x02,0xFC,0x03,0xF0,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x88
|
||||||
|
.db 0x00,0x00,0x30,0x03,0x30,0x03,0x00,0x00,0x00,0x00,0xF0,0x00,0xFC,0x01,0x8C,0x03,0x06,0x03,0xFE,0x03,0xFE,0x03,0x06,0x00,0x06,0x00,0x0C,0x02,0xFC,0x03,0xF0,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x89
|
||||||
|
.db 0x30,0x00,0x60,0x00,0xC0,0x00,0x00,0x00,0x00,0x00,0xF0,0x00,0xFC,0x01,0x8C,0x03,0x06,0x03,0xFE,0x03,0xFE,0x03,0x06,0x00,0x06,0x00,0x0C,0x02,0xFC,0x03,0xF0,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x8A
|
||||||
|
.db 0x00,0x00,0x98,0x01,0x98,0x01,0x00,0x00,0x00,0x00,0xFC,0x00,0xFC,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x8B
|
||||||
|
.db 0xC0,0x01,0x60,0x03,0x30,0x06,0x00,0x00,0x00,0x00,0xFC,0x00,0xFC,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x8C
|
||||||
|
.db 0x30,0x00,0x60,0x00,0xC0,0x00,0x00,0x00,0x00,0x00,0xFC,0x00,0xFC,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x8D
|
||||||
|
.db 0x8C,0x01,0x8C,0x01,0x00,0x00,0x60,0x00,0xF0,0x00,0xF0,0x00,0xD0,0x00,0x98,0x01,0x98,0x01,0x8C,0x03,0x0C,0x03,0xFC,0x03,0xFE,0x07,0x06,0x06,0x06,0x06,0x03,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x8E
|
||||||
|
.db 0x60,0x00,0x90,0x00,0xF0,0x00,0x60,0x00,0xF0,0x00,0xF0,0x00,0xD0,0x00,0x98,0x01,0x98,0x01,0x8C,0x03,0x0C,0x03,0xFC,0x03,0xFE,0x07,0x06,0x06,0x06,0x06,0x03,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x8F
|
||||||
|
.db 0xC0,0x00,0x60,0x00,0x00,0x00,0xFC,0x07,0xFC,0x07,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x03,0xFC,0x03,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x07,0xFC,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x90
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xBE,0x03,0xFE,0x07,0xE0,0x0C,0x60,0x0C,0x60,0x0C,0xFC,0x0F,0xE6,0x0F,0x63,0x00,0x63,0x00,0xFF,0x0F,0x9E,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x91
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x0F,0xE0,0x0F,0xE0,0x00,0xF0,0x00,0xD0,0x00,0xD8,0x07,0xC8,0x07,0xCC,0x00,0xFC,0x00,0xFC,0x00,0xC6,0x00,0xC2,0x0F,0xC3,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x92
|
||||||
|
.db 0xE0,0x00,0xB0,0x01,0x18,0x03,0x00,0x00,0x00,0x00,0xF0,0x00,0xFC,0x03,0x0C,0x03,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x0C,0x03,0xFC,0x03,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x93
|
||||||
|
.db 0x00,0x00,0x98,0x01,0x98,0x01,0x00,0x00,0x00,0x00,0xF0,0x00,0xFC,0x03,0x0C,0x03,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x0C,0x03,0xFC,0x03,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x94
|
||||||
|
.db 0x18,0x00,0x30,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0xF0,0x00,0xFC,0x03,0x0C,0x03,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x0C,0x03,0xFC,0x03,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x95
|
||||||
|
.db 0xE0,0x00,0xB0,0x01,0x18,0x03,0x00,0x00,0x00,0x00,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0xC6,0x03,0x7E,0x03,0x3C,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x96
|
||||||
|
.db 0x18,0x00,0x30,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0xC6,0x03,0x7E,0x03,0x3C,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x97
|
||||||
|
.db 0x00,0x00,0x98,0x01,0x98,0x01,0x00,0x00,0x00,0x00,0x06,0x06,0x0C,0x02,0x0C,0x03,0x1C,0x03,0x98,0x01,0x98,0x01,0xB0,0x00,0xF0,0x00,0xF0,0x00,0x60,0x00,0x60,0x00,0x20,0x00,0x30,0x00,0x3C,0x00,0x1C,0x00, ; 0x98
|
||||||
|
.db 0x8C,0x01,0x8C,0x01,0x00,0x00,0xF8,0x00,0xFC,0x01,0x8E,0x03,0x07,0x07,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x07,0x07,0x8E,0x03,0xFC,0x01,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x99
|
||||||
|
.db 0x8C,0x01,0x8C,0x01,0x00,0x00,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x8E,0x03,0xFC,0x01,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x9A
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF0,0x06,0xFC,0x03,0x0C,0x03,0x86,0x07,0xC6,0x06,0x66,0x06,0x36,0x06,0x1E,0x06,0x0C,0x03,0xFC,0x03,0xF6,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x9B
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xE0,0x03,0xF0,0x03,0x30,0x00,0x30,0x00,0x30,0x00,0xFC,0x00,0xFC,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x18,0x00,0xFC,0x03,0xFC,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x9C
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xF8,0x06,0xFC,0x03,0x8E,0x03,0x87,0x03,0xC3,0x06,0x43,0x06,0x23,0x06,0x13,0x06,0x1B,0x06,0x0E,0x07,0x8E,0x03,0xFE,0x01,0xFB,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x9D
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x07,0x07,0x8E,0x03,0xDC,0x01,0xF8,0x00,0x70,0x00,0xF8,0x00,0xDC,0x01,0x8E,0x03,0x07,0x07,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0x9E
|
||||||
|
.db 0xC0,0x07,0xE0,0x07,0x60,0x00,0x60,0x00,0x60,0x00,0xF8,0x03,0xF8,0x03,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x7E,0x00,0x3E,0x00, ; 0x9F
|
||||||
|
.db 0x80,0x01,0xC0,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0xF8,0x01,0xFC,0x03,0x04,0x03,0x00,0x03,0x00,0x03,0xF8,0x03,0x0C,0x03,0x06,0x03,0x86,0x03,0xFE,0x0F,0x7C,0x0E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xA0
|
||||||
|
.db 0x80,0x01,0xC0,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0xFC,0x00,0xFC,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xA1
|
||||||
|
.db 0x80,0x01,0xC0,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0xF0,0x00,0xFC,0x03,0x0C,0x03,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x0C,0x03,0xFC,0x03,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xA2
|
||||||
|
.db 0x80,0x01,0xC0,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0xC6,0x03,0x7E,0x03,0x3C,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xA3
|
||||||
|
.db 0x00,0x00,0x70,0x02,0xC8,0x01,0x00,0x00,0x00,0x00,0xE6,0x01,0xF6,0x03,0x1E,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xA4
|
||||||
|
.db 0x70,0x02,0xC8,0x01,0x00,0x00,0x0E,0x06,0x0E,0x06,0x1E,0x06,0x1E,0x06,0x36,0x06,0x76,0x06,0x66,0x06,0xE6,0x06,0xC6,0x06,0x86,0x07,0x86,0x07,0x06,0x07,0x06,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xA5
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xFC,0x00,0x84,0x01,0x80,0x01,0xF8,0x01,0x8C,0x01,0x8C,0x01,0xF8,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xA6
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xF0,0x00,0x98,0x01,0x0C,0x03,0x0C,0x03,0x0C,0x03,0x98,0x01,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xA7
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x60,0x00,0x20,0x00,0x30,0x00,0x18,0x00,0x0C,0x00,0x06,0x00,0x06,0x00,0x0E,0x02,0xFC,0x03,0xF8,0x03, ; 0xA8
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xF8,0x00,0x8C,0x01,0x76,0x03,0x52,0x02,0x72,0x02,0x32,0x02,0x56,0x03,0x8C,0x01,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xA9
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0x07,0xFF,0x07,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xAA
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x07,0x03,0x86,0x01,0x86,0x01,0xC6,0x00,0x66,0x00,0x66,0x00,0xB6,0x07,0x30,0x0C,0x18,0x0C,0x18,0x0C,0x0C,0x06,0x06,0x03,0x86,0x01,0x83,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xAB
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x07,0x03,0x86,0x01,0x86,0x01,0xC6,0x00,0x66,0x00,0x66,0x00,0x36,0x06,0x30,0x07,0x98,0x06,0x58,0x06,0x2C,0x06,0xE6,0x0F,0x06,0x06,0x03,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xAC
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00, ; 0xAD
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x06,0x18,0x03,0x8C,0x01,0xC6,0x00,0x63,0x00,0xC6,0x00,0x8C,0x01,0x18,0x03,0x30,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xAE
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x63,0x00,0xC6,0x00,0x8C,0x01,0x18,0x03,0x30,0x06,0x18,0x03,0x8C,0x01,0xC6,0x00,0x63,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xAF
|
||||||
|
.db 0x33,0x03,0x33,0x03,0x00,0x00,0x00,0x00,0x33,0x03,0x33,0x03,0x00,0x00,0x00,0x00,0x33,0x03,0x33,0x03,0x00,0x00,0x00,0x00,0x33,0x03,0x33,0x03,0x00,0x00,0x00,0x00,0x33,0x03,0x33,0x03,0x00,0x00,0x00,0x00, ; 0xB0
|
||||||
|
.db 0xCC,0x0C,0xCC,0x0C,0x33,0x03,0x33,0x03,0xCC,0x0C,0xCC,0x0C,0x33,0x03,0x33,0x03,0xCC,0x0C,0xCC,0x0C,0x33,0x03,0x33,0x03,0xCC,0x0C,0xCC,0x0C,0x33,0x03,0x33,0x03,0xCC,0x0C,0xCC,0x0C,0x33,0x03,0x33,0x03, ; 0xB1
|
||||||
|
.db 0xFF,0x0F,0xFF,0x0F,0x33,0x03,0x33,0x03,0xFF,0x0F,0xFF,0x0F,0x33,0x03,0x33,0x03,0xFF,0x0F,0xFF,0x0F,0x33,0x03,0x33,0x03,0xFF,0x0F,0xFF,0x0F,0x33,0x03,0x33,0x03,0xFF,0x0F,0xFF,0x0F,0x33,0x03,0x33,0x03, ; 0xB2
|
||||||
|
.db 0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00, ; 0xB3
|
||||||
|
.db 0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x7F,0x00,0x7F,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00, ; 0xB4
|
||||||
|
.db 0xC0,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0xF0,0x00,0xF0,0x00,0xD0,0x00,0x98,0x01,0x98,0x01,0x8C,0x03,0x0C,0x03,0xFC,0x03,0xFE,0x07,0x06,0x06,0x06,0x06,0x03,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xB5
|
||||||
|
.db 0x70,0x00,0x88,0x00,0x00,0x00,0x60,0x00,0xF0,0x00,0xF0,0x00,0xD0,0x00,0x98,0x01,0x98,0x01,0x8C,0x03,0x0C,0x03,0xFC,0x03,0xFE,0x07,0x06,0x06,0x06,0x06,0x03,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xB6
|
||||||
|
.db 0x30,0x00,0x60,0x00,0x00,0x00,0x60,0x00,0xF0,0x00,0xF0,0x00,0xD0,0x00,0x98,0x01,0x98,0x01,0x8C,0x03,0x0C,0x03,0xFC,0x03,0xFE,0x07,0x06,0x06,0x06,0x06,0x03,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xB7
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xF8,0x00,0x04,0x01,0x02,0x02,0xF3,0x06,0x09,0x04,0x05,0x04,0x05,0x04,0x05,0x04,0x05,0x04,0x09,0x04,0xF3,0x06,0x02,0x02,0x04,0x01,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xB8
|
||||||
|
.db 0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xBF,0x01,0xBF,0x01,0x80,0x01,0xBF,0x01,0xBF,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01, ; 0xB9
|
||||||
|
.db 0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01, ; 0xBA
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0x01,0xFF,0x01,0x80,0x01,0xBF,0x01,0xBF,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01, ; 0xBB
|
||||||
|
.db 0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xBF,0x01,0xBF,0x01,0x80,0x01,0xFF,0x01,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xBC
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x40,0x00,0x40,0x00,0xF0,0x03,0xF8,0x03,0x5C,0x02,0x4C,0x00,0x4C,0x00,0x4C,0x00,0x4C,0x00,0x5C,0x00,0xF8,0x03,0xF0,0x01,0x40,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xBD
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x07,0x0C,0x0E,0x06,0x0C,0x03,0x1C,0x03,0xB8,0x01,0xF0,0x00,0x60,0x00,0xFC,0x03,0x60,0x00,0x60,0x00,0xFC,0x03,0x60,0x00,0x60,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xBE
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x00,0x7F,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00, ; 0xBF
|
||||||
|
.db 0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0xE0,0x0F,0xE0,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xC0
|
||||||
|
.db 0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0xFF,0x0F,0xFF,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xC1
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0x0F,0xFF,0x0F,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00, ; 0xC2
|
||||||
|
.db 0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0xE0,0x0F,0xE0,0x0F,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00, ; 0xC3
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0x0F,0xFF,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xC4
|
||||||
|
.db 0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0xFF,0x0F,0xFF,0x0F,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00, ; 0xC5
|
||||||
|
.db 0x00,0x00,0x70,0x02,0xC8,0x01,0x00,0x00,0x00,0x00,0xF8,0x01,0xFC,0x03,0x04,0x03,0x00,0x03,0x00,0x03,0xF8,0x03,0x0C,0x03,0x06,0x03,0x86,0x03,0xFE,0x0F,0x7C,0x0E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xC6
|
||||||
|
.db 0x70,0x02,0xC8,0x01,0x00,0x00,0x60,0x00,0xF0,0x00,0xF0,0x00,0xD0,0x00,0x98,0x01,0x98,0x01,0x8C,0x03,0x0C,0x03,0xFC,0x03,0xFE,0x07,0x06,0x06,0x06,0x06,0x03,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xC7
|
||||||
|
.db 0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x0F,0xB0,0x0F,0x30,0x00,0xF0,0x0F,0xF0,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xC8
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xF0,0x0F,0xF0,0x0F,0x30,0x00,0xB0,0x0F,0xB0,0x0F,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01, ; 0xC9
|
||||||
|
.db 0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xBF,0x0F,0xBF,0x0F,0x00,0x00,0xFF,0x0F,0xFF,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xCA
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0x0F,0xFF,0x0F,0x00,0x00,0xBF,0x0F,0xBF,0x0F,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01, ; 0xCB
|
||||||
|
.db 0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x0F,0xB0,0x0F,0x30,0x00,0xB0,0x0F,0xB0,0x0F,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01, ; 0xCC
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0x0F,0xFF,0x0F,0x00,0x00,0xFF,0x0F,0xFF,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xCD
|
||||||
|
.db 0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xBF,0x0F,0xBF,0x0F,0x00,0x00,0xBF,0x0F,0xBF,0x0F,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01,0xB0,0x01, ; 0xCE
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0xF4,0x02,0xFC,0x03,0x9C,0x03,0x0C,0x03,0x0C,0x03,0x9C,0x03,0xFC,0x03,0xF4,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xCF
|
||||||
|
.db 0x00,0x00,0xDE,0x00,0x7E,0x00,0xF0,0x00,0xC8,0x01,0xF0,0x03,0xFC,0x03,0x0C,0x07,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x0C,0x03,0xFC,0x03,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xD0
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x00,0xFE,0x01,0x86,0x03,0x06,0x07,0x06,0x06,0x1F,0x06,0x1F,0x06,0x06,0x06,0x06,0x06,0x06,0x03,0x86,0x03,0xFE,0x01,0xFE,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xD1
|
||||||
|
.db 0xE0,0x00,0x10,0x01,0x00,0x00,0xFC,0x07,0xFC,0x07,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x03,0xFC,0x03,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x07,0xFC,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xD2
|
||||||
|
.db 0x18,0x03,0x18,0x03,0x00,0x00,0xFC,0x07,0xFC,0x07,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x03,0xFC,0x03,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x07,0xFC,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xD3
|
||||||
|
.db 0x60,0x00,0xC0,0x00,0x00,0x00,0xFC,0x07,0xFC,0x07,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x03,0xFC,0x03,0x0C,0x00,0x0C,0x00,0x0C,0x00,0x0C,0x00,0xFC,0x07,0xFC,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xD4
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFC,0x00,0xFC,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xD5
|
||||||
|
.db 0xC0,0x00,0x60,0x00,0x00,0x00,0xFE,0x01,0xFE,0x01,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0xFE,0x01,0xFE,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xD6
|
||||||
|
.db 0x70,0x00,0x88,0x00,0x00,0x00,0xFE,0x01,0xFE,0x01,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0xFE,0x01,0xFE,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xD7
|
||||||
|
.db 0x8C,0x01,0x8C,0x01,0x00,0x00,0xFE,0x01,0xFE,0x01,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0xFE,0x01,0xFE,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xD8
|
||||||
|
.db 0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x7F,0x00,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xD9
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x0F,0xE0,0x0F,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00, ; 0xDA
|
||||||
|
.db 0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F, ; 0xDB
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F, ; 0xDC
|
||||||
|
.db 0x00,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x00,0x00, ; 0xDD
|
||||||
|
.db 0x30,0x00,0x60,0x00,0x00,0x00,0xFE,0x01,0xFE,0x01,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0x30,0x00,0xFE,0x01,0xFE,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xDE
|
||||||
|
.db 0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xDF
|
||||||
|
.db 0xC0,0x00,0x60,0x00,0x00,0x00,0xF8,0x00,0xFC,0x01,0x8E,0x03,0x07,0x07,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x07,0x07,0x8E,0x03,0xFC,0x01,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xE0
|
||||||
|
.db 0x00,0x00,0xFC,0x00,0xFE,0x01,0x86,0x01,0x86,0x01,0xC6,0x00,0xC6,0x00,0x66,0x00,0xE6,0x00,0xC6,0x01,0x86,0x03,0x06,0x07,0x06,0x06,0x26,0x06,0xE6,0x07,0xC6,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xE1
|
||||||
|
.db 0x70,0x00,0x88,0x00,0x00,0x00,0xF8,0x00,0xFC,0x01,0x8E,0x03,0x07,0x07,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x07,0x07,0x8E,0x03,0xFC,0x01,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xE2
|
||||||
|
.db 0x30,0x00,0x60,0x00,0x00,0x00,0xF8,0x00,0xFC,0x01,0x8E,0x03,0x07,0x07,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x07,0x07,0x8E,0x03,0xFC,0x01,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xE3
|
||||||
|
.db 0x00,0x00,0x70,0x02,0xC8,0x01,0x00,0x00,0x00,0x00,0xF0,0x00,0xFC,0x03,0x0C,0x03,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x0C,0x03,0xFC,0x03,0xF0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xE4
|
||||||
|
.db 0x70,0x02,0xC8,0x01,0x00,0x00,0xF8,0x00,0xFC,0x01,0x8E,0x03,0x07,0x07,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x07,0x07,0x8E,0x03,0xFC,0x01,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xE5
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x8E,0x03,0xFE,0x03,0x76,0x03,0x06,0x00,0x06,0x00,0x06,0x00,0x06,0x00, ; 0xE6
|
||||||
|
.db 0x00,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0xE6,0x00,0xF6,0x01,0x8E,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x8E,0x01,0xFE,0x01,0xF6,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0x06,0x00, ; 0xE7
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x06,0x00,0x06,0x00,0xFE,0x00,0xFE,0x01,0x86,0x03,0x06,0x03,0x06,0x03,0x86,0x03,0xFE,0x01,0x7E,0x00,0x06,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xE8
|
||||||
|
.db 0xC0,0x00,0x60,0x00,0x00,0x00,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x8E,0x03,0xFC,0x01,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xE9
|
||||||
|
.db 0x70,0x00,0x88,0x00,0x00,0x00,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x8E,0x03,0xFC,0x01,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xEA
|
||||||
|
.db 0x30,0x00,0x60,0x00,0x00,0x00,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x06,0x03,0x8E,0x03,0xFC,0x01,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xEB
|
||||||
|
.db 0x80,0x01,0xC0,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x06,0x06,0x0C,0x02,0x0C,0x03,0x1C,0x03,0x98,0x01,0x98,0x01,0xB0,0x00,0xF0,0x00,0xF0,0x00,0x60,0x00,0x60,0x00,0x20,0x00,0x30,0x00,0x3C,0x00,0x1C,0x00, ; 0xEC
|
||||||
|
.db 0xC0,0x00,0x60,0x00,0x00,0x00,0x07,0x0C,0x06,0x06,0x0C,0x03,0x1C,0x03,0x98,0x01,0xF0,0x00,0xF0,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xED
|
||||||
|
.db 0xFF,0x0F,0xFF,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xEE
|
||||||
|
.db 0x60,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xEF
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFC,0x03,0xFC,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xF0
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0xFE,0x07,0xFE,0x07,0x60,0x00,0x60,0x00,0x60,0x00,0x00,0x00,0xFE,0x07,0xFE,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xF1
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0x0F,0x00,0x00,0xFF,0x0F,0x00,0x00, ; 0xF2
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x0F,0x0C,0x18,0x06,0x18,0x03,0x86,0x03,0x98,0x01,0xD8,0x00,0x6F,0x07,0x60,0x07,0xB0,0x06,0x58,0x06,0x3C,0x06,0xEC,0x0F,0x06,0x06,0x03,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xF3
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xFC,0x03,0x3E,0x02,0x3E,0x02,0x3E,0x02,0x3E,0x02,0x3C,0x02,0x38,0x02,0x20,0x02,0x20,0x02,0x20,0x02,0x20,0x02,0x20,0x02,0x20,0x02,0x20,0x02,0x20,0x02,0x20,0x02,0x20,0x02,0x00,0x00, ; 0xF4
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xF0,0x01,0xF8,0x01,0x0C,0x00,0x0C,0x00,0x1C,0x00,0xF0,0x00,0xC8,0x01,0x8C,0x03,0x0C,0x03,0x1C,0x03,0xF8,0x01,0xE0,0x01,0x80,0x03,0x00,0x03,0x04,0x03,0xFC,0x01,0xF8,0x00,0x00,0x00, ; 0xF5
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0xFE,0x07,0xFE,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xF6
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x70,0x00,0xC0,0x00,0x70,0x00, ; 0xF7
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x30,0x00,0x48,0x00,0x48,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xF8
|
||||||
|
.db 0x8C,0x01,0x8C,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xF9
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xFA
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x78,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xFB
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xF8,0x00,0x88,0x01,0x80,0x01,0xF0,0x00,0x80,0x01,0x80,0x01,0xF8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xFC
|
||||||
|
.db 0x00,0x00,0x00,0x00,0xF8,0x01,0x00,0x03,0x00,0x03,0x80,0x01,0x60,0x00,0x18,0x00,0xF8,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xFD
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFE,0x07,0xFE,0x07,0xFE,0x07,0xFE,0x07,0xFE,0x07,0xFE,0x07,0xFE,0x07,0xFE,0x07,0xFE,0x07,0xFE,0x07,0xFE,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, ; 0xFE
|
||||||
|
.db 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 ; 0xFF
|
||||||
|
|
||||||
@@ -15,6 +15,19 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine font6x8MonoHandlerFn
|
||||||
|
;
|
||||||
|
; Handler for 6x8 Mono Fonts
|
||||||
|
;
|
||||||
|
|
||||||
|
font6x8MonoHandlerFn:
|
||||||
|
cpi r23, FONT_FN_RENDER
|
||||||
|
breq font6x8MonoRenderCharacter
|
||||||
|
rjmp FONT_GenericHandler
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
; ---------------------------------------------------------------------------
|
; ---------------------------------------------------------------------------
|
||||||
; @routine font6x8RenderCharacter
|
; @routine font6x8RenderCharacter
|
||||||
|
|||||||
@@ -15,6 +15,20 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine font8x8MonoHandlerFn
|
||||||
|
;
|
||||||
|
; Handler for 8x8 Mono Fonts
|
||||||
|
;
|
||||||
|
|
||||||
|
font8x8MonoHandlerFn:
|
||||||
|
cpi r23, FONT_FN_RENDER
|
||||||
|
breq font8x8MonoRenderCharacter
|
||||||
|
rjmp FONT_GenericHandler
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
; ---------------------------------------------------------------------------
|
; ---------------------------------------------------------------------------
|
||||||
; @routine font8x8RenderCharacter
|
; @routine font8x8RenderCharacter
|
||||||
|
|||||||
167
avr/modules/lcd2/font/main.asm
Normal file
167
avr/modules/lcd2/font/main.asm
Normal file
@@ -0,0 +1,167 @@
|
|||||||
|
; ***************************************************************************
|
||||||
|
; copyright : (C) 2025 by Martin Preuss
|
||||||
|
; email : martin@libchipcard.de
|
||||||
|
;
|
||||||
|
; ***************************************************************************
|
||||||
|
; * This file is part of the project "AqHome". *
|
||||||
|
; * Please see toplevel file COPYING of that project for license details. *
|
||||||
|
; ***************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ***************************************************************************
|
||||||
|
; code
|
||||||
|
|
||||||
|
.cseg
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine FONT_RenderChar
|
||||||
|
|
||||||
|
; @param R16 character to write
|
||||||
|
; @param R1:R0 background color
|
||||||
|
; @param R3:R2 foreground color
|
||||||
|
; @param Z pointer to font
|
||||||
|
; @param X pointer to RAM to store data to
|
||||||
|
; @param r18 char width in pixel
|
||||||
|
; @param r19 char height in pixel
|
||||||
|
; @clobbers any, !Z
|
||||||
|
|
||||||
|
FONT_RenderChar:
|
||||||
|
ldi r23, FONT_FN_RENDER
|
||||||
|
rjmp fontCallHandler
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine FONT_GetCharWidth
|
||||||
|
|
||||||
|
; @param Z pointer to font
|
||||||
|
; @return R16 character width for given character set
|
||||||
|
; @clobbers any, !Z
|
||||||
|
|
||||||
|
FONT_GetCharWidth:
|
||||||
|
ldi r23, FONT_FN_GETCHARWIDTH
|
||||||
|
rjmp fontCallHandler
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine FONT_GetCharHeight
|
||||||
|
|
||||||
|
; @param Z pointer to font
|
||||||
|
; @return R16 character height for given character set
|
||||||
|
; @clobbers any, !Z
|
||||||
|
|
||||||
|
FONT_GetCharHeight:
|
||||||
|
ldi r23, FONT_FN_GETCHARHEIGHT
|
||||||
|
rjmp fontCallHandler
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine FONT_GetStringWidth
|
||||||
|
|
||||||
|
; @param Z pointer to font
|
||||||
|
; @param X pointer to null-terminated string in flash
|
||||||
|
; @return R16 character width for given character set
|
||||||
|
; @clobbers any, !Z
|
||||||
|
|
||||||
|
FONT_GetStringWidthFlash:
|
||||||
|
ldi r23, FONT_FN_GETSTRINGWIDTH
|
||||||
|
rjmp fontCallHandler
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine FONT_GetStringHeight
|
||||||
|
|
||||||
|
; @param Z pointer to font
|
||||||
|
; @param X pointer to null-terminated string in flash
|
||||||
|
; @return R16 character width for given character set
|
||||||
|
; @clobbers any, !Z
|
||||||
|
|
||||||
|
FONT_GetStringHeight:
|
||||||
|
ldi r23, FONT_FN_GETSTRINGHEIGHT
|
||||||
|
rjmp fontCallHandler
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine fontCallHandler
|
||||||
|
;
|
||||||
|
; @param r23 function number
|
||||||
|
; @param Z pointer to font
|
||||||
|
|
||||||
|
fontCallHandler:
|
||||||
|
lpm r17, Z+
|
||||||
|
push r17
|
||||||
|
lpm r17, Z
|
||||||
|
push r17
|
||||||
|
sbiw zh:zl, 1
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine FONT_GenericHandler
|
||||||
|
;
|
||||||
|
; Generic handler for font functions.
|
||||||
|
; @param R23 function to call (see @ref FONT_FN_RENDER et al)
|
||||||
|
|
||||||
|
FONT_GenericHandler:
|
||||||
|
cpi r23, FONT_FN_GETCHARWIDTH
|
||||||
|
breq fontGenericFnGetCharWidth
|
||||||
|
cpi r23, FONT_FN_GETCHARHEIGHT
|
||||||
|
breq fontGenericFnGetCharHeight
|
||||||
|
cpi r23, FONT_FN_GETSTRINGWIDTH
|
||||||
|
breq fontGenericFnGetStringWidth
|
||||||
|
cpi r23, FONT_FN_GETSTRINGHEIGHT
|
||||||
|
breq fontGenericFnGetStringHeight
|
||||||
|
ret
|
||||||
|
fontGenericFnGetCharWidth:
|
||||||
|
adiw zh:zl, FONT_OFFS_WIDTH
|
||||||
|
ld r16, X
|
||||||
|
sbiw zh:zl, FONT_OFFS_WIDTH
|
||||||
|
ret
|
||||||
|
fontGenericFnGetCharHeight:
|
||||||
|
adiw zh:zl, FONT_OFFS_HEIGHT
|
||||||
|
ld r16, X
|
||||||
|
sbiw zh:zl, FONT_OFFS_HEIGHT
|
||||||
|
ret
|
||||||
|
fontGenericFnGetStringWidth:
|
||||||
|
adiw zh:zl, FONT_OFFS_WIDTH
|
||||||
|
ld r17, X
|
||||||
|
sbiw zh:zl, FONT_OFFS_WIDTH
|
||||||
|
clr r16
|
||||||
|
push zl
|
||||||
|
push zh
|
||||||
|
mov zl, xl
|
||||||
|
mov zh, xh
|
||||||
|
fontGenericFnGetStringWidth_loop:
|
||||||
|
lpm r18, Z+
|
||||||
|
tst r18
|
||||||
|
breq fontGenericFnGetStringWidth_loopEnd
|
||||||
|
add r16, r17
|
||||||
|
rjmp fontGenericFnGetStringWidth_loop
|
||||||
|
fontGenericFnGetStringWidth_loopEnd:
|
||||||
|
pop zh
|
||||||
|
pop zl
|
||||||
|
ret
|
||||||
|
fontGenericFnGetStringHeight:
|
||||||
|
rjmp fontGenericFnGetCharHeight ; for now monospace fonts only
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -36,102 +36,12 @@
|
|||||||
|
|
||||||
ILI9341_Init:
|
ILI9341_Init:
|
||||||
rcall ILI9341IoInit
|
rcall ILI9341IoInit
|
||||||
|
|
||||||
rcall ILI9341_Reset
|
rcall ILI9341_Reset
|
||||||
|
|
||||||
rcall ILI9341_LeaveSleepMode
|
rcall ILI9341_LeaveSleepMode
|
||||||
|
|
||||||
ldi r16, 0xff
|
ldi r16, 0xff
|
||||||
rcall ILI9341_SetBacklight
|
rcall ILI9341_SetBacklight
|
||||||
|
|
||||||
|
|
||||||
#if 0
|
|
||||||
ldi r16, 0xff
|
|
||||||
mov r3, r16
|
|
||||||
ldi r16, 0xff
|
|
||||||
mov r2, r16
|
|
||||||
rcall ili9341Test5
|
|
||||||
|
|
||||||
; 0bRRRRRGGGGGGBBBBB
|
|
||||||
|
|
||||||
ldi r16, 0b11111000 ; red
|
|
||||||
mov r3, r16
|
|
||||||
ldi r16, 0b00000000 ; red
|
|
||||||
mov r2, r16
|
|
||||||
rcall ili9341Test2
|
|
||||||
|
|
||||||
; 0bRRRRRGGGGGGBBBBB
|
|
||||||
ldi r16, 0b00000000
|
|
||||||
mov r3, r16
|
|
||||||
ldi r16, 0b00011111 ; blue
|
|
||||||
mov r2, r16
|
|
||||||
rcall ili9341Test3
|
|
||||||
|
|
||||||
; 0bRRRRRGGGGGGBBBBB
|
|
||||||
ldi r16, 0b00000111 ; green
|
|
||||||
mov r3, r16
|
|
||||||
ldi r16, 0b11100000 ; green
|
|
||||||
mov r2, r16
|
|
||||||
rcall ili9341Test4
|
|
||||||
|
|
||||||
; set foreground color
|
|
||||||
ldi r16, 0b11100000 ; green
|
|
||||||
mov r2, r16
|
|
||||||
ldi r16, 0b00000111 ; green
|
|
||||||
mov r3, r16
|
|
||||||
|
|
||||||
; set background color
|
|
||||||
ldi r16, 0b11111111 ; white
|
|
||||||
mov r0, r16
|
|
||||||
mov r1, r16
|
|
||||||
|
|
||||||
; set Xpos
|
|
||||||
ldi r16, LOW(100)
|
|
||||||
mov r4, r16
|
|
||||||
ldi r16, HIGH(100)
|
|
||||||
mov r5, r16
|
|
||||||
|
|
||||||
; setYpos
|
|
||||||
ldi r16, LOW(150)
|
|
||||||
mov r6, r16
|
|
||||||
ldi r16, HIGH(150)
|
|
||||||
mov r7, r16
|
|
||||||
|
|
||||||
; set font pos
|
|
||||||
ldi zl, LOW(font2_6x8*2)
|
|
||||||
ldi zh, HIGH(font2_6x8*2)
|
|
||||||
|
|
||||||
; set buffer pos
|
|
||||||
; ldi xl, LOW(ILI9341_buffer)
|
|
||||||
; ldi xh, HIGH(ILI9341_buffer)
|
|
||||||
ldi xl, LOW(0x260)
|
|
||||||
ldi xh, HIGH(0x260)
|
|
||||||
|
|
||||||
; set foreground color
|
|
||||||
ldi r16, 0b00000000 ; black
|
|
||||||
mov r2, r16
|
|
||||||
mov r3, r16
|
|
||||||
|
|
||||||
; set character
|
|
||||||
ldi r16, 'A'
|
|
||||||
rcall ili9341_WriteCharacterX4At
|
|
||||||
|
|
||||||
ldi r16, 'Q'
|
|
||||||
rcall ili9341_WriteCharacterX4At
|
|
||||||
|
|
||||||
ldi r16, 'H'
|
|
||||||
rcall ili9341_WriteCharacterX4At
|
|
||||||
|
|
||||||
ldi r16, 'O'
|
|
||||||
rcall ili9341_WriteCharacterX4At
|
|
||||||
|
|
||||||
ldi r16, 'M'
|
|
||||||
rcall ili9341_WriteCharacterX4At
|
|
||||||
|
|
||||||
ldi r16, 'E'
|
|
||||||
rcall ili9341_WriteCharacterX4At
|
|
||||||
#endif
|
|
||||||
|
|
||||||
sec
|
sec
|
||||||
ret
|
ret
|
||||||
; @end
|
; @end
|
||||||
@@ -269,108 +179,6 @@ ILI9341_LeaveSleepMode:
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
; ---------------------------------------------------------------------------
|
|
||||||
; @routine ILI9341_FillScreen
|
|
||||||
;
|
|
||||||
; @param r17:r16 color
|
|
||||||
|
|
||||||
ILI9341_FillScreen:
|
|
||||||
; TODO
|
|
||||||
ret
|
|
||||||
; @end
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ili9341Test1:
|
|
||||||
rcall ili9341BeginSpi
|
|
||||||
ldi r16, 0x04
|
|
||||||
cbi ILI9341_DC_OUTPUT, ILI9341_DC_PIN ; D low (send command)
|
|
||||||
rcall SPIHW_MasterTransfer ; (R16)
|
|
||||||
sbi ILI9341_DC_OUTPUT, ILI9341_DC_PIN ; D high (send data)
|
|
||||||
clr r16
|
|
||||||
; read byte 1
|
|
||||||
rcall SPIHW_MasterTransfer ; (R16)
|
|
||||||
; read byte 2
|
|
||||||
rcall SPIHW_MasterTransfer ; (R16)
|
|
||||||
; read byte 3
|
|
||||||
rcall SPIHW_MasterTransfer ; (R16)
|
|
||||||
; read byte 4
|
|
||||||
rcall SPIHW_MasterTransfer ; (R16)
|
|
||||||
rcall ili9341EndSpi ; (R16)
|
|
||||||
ret
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
; @param %0 X
|
|
||||||
; @param %1 Y
|
|
||||||
; @param %2 W
|
|
||||||
; @param %3 H
|
|
||||||
.macro M_ILI9341_FILL_RECT
|
|
||||||
ldi r16, LOW(@0) ; X0
|
|
||||||
mov r4, r16
|
|
||||||
ldi r16, HIGH(@0)
|
|
||||||
mov r5, r16
|
|
||||||
|
|
||||||
ldi r16, LOW(@1) ; Y0
|
|
||||||
mov r6, r16
|
|
||||||
ldi r16, HIGH(@1)
|
|
||||||
mov r7, r16
|
|
||||||
|
|
||||||
ldi r16, LOW(@2) ; W
|
|
||||||
mov r8, r16
|
|
||||||
ldi r16, HIGH(@2)
|
|
||||||
mov r9, r16
|
|
||||||
|
|
||||||
ldi r16, LOW(@3) ; H
|
|
||||||
mov r10, r16
|
|
||||||
ldi r16, HIGH(@3)
|
|
||||||
mov r11, r16
|
|
||||||
|
|
||||||
rcall ILI9341_FillRect
|
|
||||||
.endmacro
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ili9341Test2:
|
|
||||||
M_ILI9341_FILL_RECT 10, 20, 70, 100
|
|
||||||
ret
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ili9341Test3:
|
|
||||||
M_ILI9341_FILL_RECT 90, 40, 70, 100
|
|
||||||
ret
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ili9341Test4:
|
|
||||||
M_ILI9341_FILL_RECT 40, 30, 70, 100
|
|
||||||
ret
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ili9341Test5:
|
|
||||||
M_ILI9341_FILL_RECT 0, 0, 319, 239
|
|
||||||
ret
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ili9341InitCommands:
|
ili9341InitCommands:
|
||||||
; display off
|
; display off
|
||||||
.db 0x28, 0
|
.db 0x28, 0
|
||||||
@@ -421,10 +229,3 @@ ili9341InitCommands:
|
|||||||
.db 0xff, 0xff
|
.db 0xff, 0xff
|
||||||
|
|
||||||
|
|
||||||
helloWorld: .db "Hello World", 0
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.include "modules/lcd2/font/font2.asm"
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
ili9341_WriteCharacterX1At:
|
ili9341_WriteCharacterX1At:
|
||||||
push xl
|
push xl
|
||||||
push xh
|
push xh
|
||||||
rcall ili9341FontRenderChar ; (r16, r17, r24, r25, z)
|
rcall ili9341FontRenderChar ; (r16, r17, r24, r25, z)
|
||||||
rcall ili9341BitBlit ; (r16, r17, r20, r21, r22, r23, r24, r25, X)
|
rcall ili9341BitBlit ; (r16, r17, r20, r21, r22, r23, r24, r25, X)
|
||||||
; advance X (add char width to X)
|
; advance X (add char width to X)
|
||||||
add r4, r8
|
add r4, r8
|
||||||
@@ -58,7 +58,7 @@ ili9341_WriteCharacterX1At:
|
|||||||
; @clobbers r16 (r17, r18, r19, r20, r21, r22, r23, r24, r25, X)
|
; @clobbers r16 (r17, r18, r19, r20, r21, r22, r23, r24, r25, X)
|
||||||
|
|
||||||
ili9341_WriteCharacterX2At:
|
ili9341_WriteCharacterX2At:
|
||||||
rcall ili9341FontRenderChar ; (r16, r17, r24, r25, z)
|
rcall ili9341FontRenderChar ; (r16, r17, r24, r25, z)
|
||||||
rcall ili9341BitBlitStretch2 ; (r16, r17, r18, r19, r20, r21, r22, r23, r24, r25, X)
|
rcall ili9341BitBlitStretch2 ; (r16, r17, r18, r19, r20, r21, r22, r23, r24, r25, X)
|
||||||
; advance X (add double char width to X)
|
; advance X (add double char width to X)
|
||||||
lsl r8 ; Wx2
|
lsl r8 ; Wx2
|
||||||
@@ -114,8 +114,7 @@ ili9341FontRenderChar:
|
|||||||
; render character
|
; render character
|
||||||
push xl
|
push xl
|
||||||
push xh
|
push xh
|
||||||
; call render function of the selected font (first word of font is jmp to render function)
|
rcall FONT_RenderChar
|
||||||
rcall ili9341JumpToFontRenderFn ; (r17, r24, r25, x)
|
|
||||||
pop xh
|
pop xh
|
||||||
pop xl
|
pop xl
|
||||||
|
|
||||||
@@ -129,24 +128,6 @@ ili9341FontRenderChar:
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
; ---------------------------------------------------------------------------
|
|
||||||
; @routine ili9341JumpToFontRenderFn
|
|
||||||
;
|
|
||||||
; helper function to call function at the beginning of the given font
|
|
||||||
; @clobbers r17
|
|
||||||
|
|
||||||
ili9341JumpToFontRenderFn:
|
|
||||||
lpm r17, Z+
|
|
||||||
push r17
|
|
||||||
lpm r17, Z
|
|
||||||
push r17
|
|
||||||
sbiw zh:zl, 1
|
|
||||||
ret
|
|
||||||
; @end
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
; ---------------------------------------------------------------------------
|
; ---------------------------------------------------------------------------
|
||||||
; @routine textNibbleToAscii
|
; @routine textNibbleToAscii
|
||||||
;
|
;
|
||||||
@@ -169,7 +150,7 @@ textNibbleToAscii_l1:
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#if 0
|
||||||
; ---------------------------------------------------------------------------
|
; ---------------------------------------------------------------------------
|
||||||
; @routine ili9341_WriteCharacterX4At
|
; @routine ili9341_WriteCharacterX4At
|
||||||
|
|
||||||
@@ -272,6 +253,7 @@ Debug_WriteHexBuffer_loop:
|
|||||||
brne Debug_WriteHexBuffer_loop
|
brne Debug_WriteHexBuffer_loop
|
||||||
ret
|
ret
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -101,11 +101,12 @@
|
|||||||
.equ TIMER_OFFS_LIST = 0
|
.equ TIMER_OFFS_LIST = 0
|
||||||
.equ TIMER_OFFS_TIMER = LIST_SIZE
|
.equ TIMER_OFFS_TIMER = LIST_SIZE
|
||||||
.equ TIMER_OFFS_VALUE_LO = TIMER_OFFS_TIMER
|
.equ TIMER_OFFS_VALUE_LO = TIMER_OFFS_TIMER
|
||||||
.equ TIMER_OFFS_VALUE_LO = TIMER_OFFS_TIMER+1
|
.equ TIMER_OFFS_VALUE_HI = TIMER_OFFS_TIMER+1
|
||||||
.equ TIMER_OFFS_RELOAD_LO = TIMER_OFFS_TIMER+2
|
.equ TIMER_OFFS_RELOAD_LO = TIMER_OFFS_TIMER+2
|
||||||
.equ TIMER_OFFS_RELOAD_HI = TIMER_OFFS_TIMER+3
|
.equ TIMER_OFFS_RELOAD_HI = TIMER_OFFS_TIMER+3
|
||||||
.equ TIMER_OFFS_OPTIONS = TIMER_OFFS_TIMER+4
|
.equ TIMER_OFFS_OPTIONS = TIMER_OFFS_TIMER+4
|
||||||
.equ TIMER_SIZE = TIMER_OFFS_TIMER+5
|
.equ TIMER_OFFS_SIGNAL = TIMER_OFFS_TIMER+5
|
||||||
|
.equ TIMER_SIZE = TIMER_OFFS_TIMER+6
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
464
avr/modules/lcd2/win/object.asm
Normal file
464
avr/modules/lcd2/win/object.asm
Normal file
@@ -0,0 +1,464 @@
|
|||||||
|
; ***************************************************************************
|
||||||
|
; copyright : (C) 2025 by Martin Preuss
|
||||||
|
; email : martin@libchipcard.de
|
||||||
|
;
|
||||||
|
; ***************************************************************************
|
||||||
|
; * This file is part of the project "AqHome". *
|
||||||
|
; * Please see toplevel file COPYING of that project for license details. *
|
||||||
|
; ***************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine OBJ_Init @global
|
||||||
|
;
|
||||||
|
; @param Y pointer to object SRAM
|
||||||
|
; @param Z pointer to handler function (word address)
|
||||||
|
; @param r17 options
|
||||||
|
; @clobbers X
|
||||||
|
|
||||||
|
OBJ_Init:
|
||||||
|
push r17
|
||||||
|
mov xl, yl
|
||||||
|
mov xh, yh
|
||||||
|
clr r16
|
||||||
|
ldi r17, OBJ_OFFS_SIZE
|
||||||
|
rcall Utils_FillSram ; (R17, X)
|
||||||
|
rcall Tree_InitObject ; (R16)
|
||||||
|
pop r17
|
||||||
|
std Y+OBJ_OFFS_HANDLERFN_LO, zl
|
||||||
|
std Y+OBJ_OFFS_HANDLERFN_HI, zh
|
||||||
|
std Y+OBJ_OFFS_OPTIONS, r17
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine OBJ_free @global
|
||||||
|
;
|
||||||
|
; @param Y pointer to object in SRAM
|
||||||
|
; @clobbers any
|
||||||
|
|
||||||
|
OBJ_free:
|
||||||
|
; free children
|
||||||
|
push yl
|
||||||
|
push yh
|
||||||
|
rcall Tree_GetFirstChildObject
|
||||||
|
OBJ_free_loop:
|
||||||
|
mov r16, xl
|
||||||
|
or r16, xh
|
||||||
|
breq OBJ_free_loopEnd
|
||||||
|
mov yl, xl
|
||||||
|
mov yh, xh
|
||||||
|
rcall List_GetNextObject
|
||||||
|
push xl ; next
|
||||||
|
push xh ; next
|
||||||
|
rcall OBJ_free
|
||||||
|
pop xh ; next
|
||||||
|
pop xl ; next
|
||||||
|
rjmp OBJ_free_loop
|
||||||
|
OBJ_free_loopEnd:
|
||||||
|
pop yh
|
||||||
|
pop yl
|
||||||
|
|
||||||
|
rcall Tree_UnlinkObject
|
||||||
|
|
||||||
|
push yl
|
||||||
|
push yh
|
||||||
|
ldi r16, OBJ_SIGNAL_DESTROY
|
||||||
|
rcall OBJ_Handler
|
||||||
|
pop yh
|
||||||
|
pop yl
|
||||||
|
rcall objFreeLinks
|
||||||
|
rcall objFreeTimers
|
||||||
|
mov xl, yl
|
||||||
|
mov xh, yh
|
||||||
|
rcall Heap_free
|
||||||
|
clc
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine OBJ_Handler
|
||||||
|
;
|
||||||
|
; Signal handler for an object. A signal can have up to 3 parameters
|
||||||
|
; conveyed in registers R18, R19 and X.
|
||||||
|
;
|
||||||
|
; @param Y pointer to object SRAM
|
||||||
|
; @param r16 signal
|
||||||
|
; @param R18 1st param
|
||||||
|
; @param R19 2nd param
|
||||||
|
; @param X 3rd param
|
||||||
|
|
||||||
|
OBJ_Handler:
|
||||||
|
ldd r17, Y+OBJ_OFFS_HANDLERFN_LO
|
||||||
|
push r17
|
||||||
|
ldd r17, Y+OBJ_OFFS_HANDLERFN_HI
|
||||||
|
push r17
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine OBJ_EmitSignal
|
||||||
|
;
|
||||||
|
; @param Y pointer to object SRAM
|
||||||
|
; @param r16 signal to emit
|
||||||
|
; @param R18 1st param
|
||||||
|
; @param R19 2nd param
|
||||||
|
; @param X 3rd param
|
||||||
|
|
||||||
|
OBJ_EmitSignal:
|
||||||
|
push yl
|
||||||
|
push yh
|
||||||
|
ldd r17, Y+OBJ_OFFS_LINKS_LO
|
||||||
|
ldd yh, Y+OBJ_OFFS_LINKS_HI
|
||||||
|
mov yl, r17
|
||||||
|
OBJ_EmitSignal_loop:
|
||||||
|
push r16
|
||||||
|
rcall objCheckEmitSignalForLink
|
||||||
|
pop r16
|
||||||
|
push xl
|
||||||
|
push xh
|
||||||
|
rcall List_GetNextObject ; (any, !X, !Y, !R18, !R19)
|
||||||
|
mov yl, xl
|
||||||
|
mov yh, xh
|
||||||
|
pop xh
|
||||||
|
pop xl
|
||||||
|
mov r17, yl
|
||||||
|
or r17, yh
|
||||||
|
brne OBJ_EmitSignal_loop
|
||||||
|
OBJ_EmitSignal_popRet:
|
||||||
|
pop yh
|
||||||
|
pop yl
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine OBJ_AddLink @global
|
||||||
|
;
|
||||||
|
; @param Y pointer to object SRAM
|
||||||
|
; @param X pointer to link
|
||||||
|
; @clobbers R16, R17
|
||||||
|
|
||||||
|
OBJ_AddLink:
|
||||||
|
ldd r16, Y+OBJ_OFFS_LINKS_LO
|
||||||
|
ldd r17, Y+OBJ_OFFS_LINKS_HI
|
||||||
|
tst r16
|
||||||
|
brne OBJ_AddLink_addToExisting
|
||||||
|
tst r17
|
||||||
|
brne OBJ_AddLink_addToExisting
|
||||||
|
; empty list, new link is first
|
||||||
|
std Y+OBJ_OFFS_LINKS_LO, xl
|
||||||
|
std Y+OBJ_OFFS_LINKS_HI, xh
|
||||||
|
rjmp OBJ_AddLink_end
|
||||||
|
OBJ_AddLink_addToExisting:
|
||||||
|
push xl
|
||||||
|
push xh
|
||||||
|
push yl
|
||||||
|
push yh
|
||||||
|
mov yl, xl
|
||||||
|
mov yh, xh
|
||||||
|
mov xl, r16
|
||||||
|
mov xh, r17
|
||||||
|
rcall List_AddObject ; (r16, r17, x)
|
||||||
|
pop yh
|
||||||
|
pop yl
|
||||||
|
pop xh
|
||||||
|
pop xl
|
||||||
|
OBJ_AddLink_end:
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine OBJ_RemoveLink @global
|
||||||
|
;
|
||||||
|
; @param Y pointer to object SRAM
|
||||||
|
; @param X pointer to link
|
||||||
|
; @clobbers R16, R17
|
||||||
|
|
||||||
|
OBJ_RemoveLink:
|
||||||
|
ldd r16, Y+OBJ_OFFS_LINKS_LO
|
||||||
|
ldd r17, Y+OBJ_OFFS_LINKS_HI
|
||||||
|
cp r16, xl
|
||||||
|
brne OBJ_RemoveLink_notFirst
|
||||||
|
cp r17, xh
|
||||||
|
brne OBJ_RemoveLink_notFirst
|
||||||
|
clr r16
|
||||||
|
std Y+OBJ_OFFS_LINKS_LO, r16
|
||||||
|
std Y+OBJ_OFFS_LINKS_HI, r16
|
||||||
|
rjmp OBJ_RemoveLink_end
|
||||||
|
OBJ_RemoveLink_notFirst:
|
||||||
|
push xl
|
||||||
|
push xh
|
||||||
|
push yl
|
||||||
|
push yh
|
||||||
|
mov yl, xl
|
||||||
|
mov yh, r17
|
||||||
|
mov xl, r16
|
||||||
|
mov xh, r17
|
||||||
|
rcall List_UnlinkObject ; (r16, r17, x)
|
||||||
|
pop yh
|
||||||
|
pop yl
|
||||||
|
pop xh
|
||||||
|
pop xl
|
||||||
|
OBJ_RemoveLink_end:
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine OBJ_AddTimer @global
|
||||||
|
;
|
||||||
|
; @param Y pointer to object SRAM
|
||||||
|
; @param X pointer to timer
|
||||||
|
; @clobbers R16, R17
|
||||||
|
|
||||||
|
OBJ_AddTimer:
|
||||||
|
ldd r16, Y+OBJ_OFFS_TIMERS_LO
|
||||||
|
ldd r17, Y+OBJ_OFFS_TIMERS_HI
|
||||||
|
tst r16
|
||||||
|
brne OBJ_AddTimer_addToExisting
|
||||||
|
tst r17
|
||||||
|
brne OBJ_AddTimer_addToExisting
|
||||||
|
; empty list, new timer is first
|
||||||
|
std Y+OBJ_OFFS_TIMERS_LO, xl
|
||||||
|
std Y+OBJ_OFFS_TIMERS_HI, xh
|
||||||
|
rjmp OBJ_AddTimer_end
|
||||||
|
OBJ_AddTimer_addToExisting:
|
||||||
|
push xl
|
||||||
|
push xh
|
||||||
|
push yl
|
||||||
|
push yh
|
||||||
|
mov yl, xl
|
||||||
|
mov yh, xh
|
||||||
|
mov xl, r16
|
||||||
|
mov xh, r17
|
||||||
|
rcall List_AddObject ; (r16, r17, x)
|
||||||
|
pop yh
|
||||||
|
pop yl
|
||||||
|
pop xh
|
||||||
|
pop xl
|
||||||
|
OBJ_AddTimer_end:
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine OBJ_RemoveTimer @global
|
||||||
|
;
|
||||||
|
; @param Y pointer to object SRAM
|
||||||
|
; @param X pointer to timer
|
||||||
|
; @clobbers R16, R17
|
||||||
|
|
||||||
|
OBJ_RemoveTimer:
|
||||||
|
ldd r16, Y+OBJ_OFFS_TIMERS_LO
|
||||||
|
ldd r17, Y+OBJ_OFFS_TIMERS_HI
|
||||||
|
cp r16, xl
|
||||||
|
brne OBJ_RemoveTimer_notFirst
|
||||||
|
cp r17, xh
|
||||||
|
brne OBJ_RemoveTimer_notFirst
|
||||||
|
clr r16
|
||||||
|
std Y+OBJ_OFFS_TIMERS_LO, r16
|
||||||
|
std Y+OBJ_OFFS_TIMERS_HI, r16
|
||||||
|
rjmp OBJ_RemoveTimer_end
|
||||||
|
OBJ_RemoveTimer_notFirst:
|
||||||
|
push xl
|
||||||
|
push xh
|
||||||
|
push yl
|
||||||
|
push yh
|
||||||
|
mov yl, xl
|
||||||
|
mov yh, r17
|
||||||
|
mov xl, r16
|
||||||
|
mov xh, r17
|
||||||
|
rcall List_UnlinkObject ; (r16, r17, x)
|
||||||
|
pop yh
|
||||||
|
pop yl
|
||||||
|
pop xh
|
||||||
|
pop xl
|
||||||
|
OBJ_RemoveTimer_end:
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @param r16 signal
|
||||||
|
; @param Y link
|
||||||
|
; @clobbers any, !X, !Y, !R18, !R19
|
||||||
|
|
||||||
|
objCheckEmitSignalForLink:
|
||||||
|
ldd r17, Y+OBJ_LINK_OFFS_SIGNAL
|
||||||
|
cp r16, r17
|
||||||
|
brne objCheckEmitSignalForLink_ret
|
||||||
|
push yl
|
||||||
|
push yh
|
||||||
|
push xl
|
||||||
|
push xh
|
||||||
|
push r18
|
||||||
|
push r19
|
||||||
|
ldd r16, Y+OBJ_LINK_OFFS_SLOT
|
||||||
|
ldd r17, Y+OBJ_LINK_OFFS_TARGET_LO
|
||||||
|
ldd yh, Y+OBJ_LINK_OFFS_TARGET_HI
|
||||||
|
mov yl, r17
|
||||||
|
rcall OBJ_Handler
|
||||||
|
pop r19
|
||||||
|
pop r18
|
||||||
|
pop xh
|
||||||
|
pop xl
|
||||||
|
pop yh
|
||||||
|
pop yl
|
||||||
|
objCheckEmitSignalForLink_ret:
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine objFreeLinks
|
||||||
|
;
|
||||||
|
; @clobbers r16, r17, r18, r19, r24, r25, X
|
||||||
|
|
||||||
|
objFreeLinks:
|
||||||
|
push yl
|
||||||
|
push yh
|
||||||
|
ldd r16, Y+OBJ_OFFS_LINKS_LO
|
||||||
|
ldd r17, Y+OBJ_OFFS_LINKS_HI
|
||||||
|
clr r18
|
||||||
|
std Y+OBJ_OFFS_LINKS_LO, r18
|
||||||
|
std Y+OBJ_OFFS_LINKS_HI, r18
|
||||||
|
mov yl, r16
|
||||||
|
mov yh, r17
|
||||||
|
ldi zl, LOW(Obj_Link_free)
|
||||||
|
ldi zh, HIGH(Obj_Link_free)
|
||||||
|
rcall List_ForEveryObject ; (r16, r17, r18, r19, r24, r25, X, Y)
|
||||||
|
pop yh
|
||||||
|
pop yl
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine objFreeTimers
|
||||||
|
;
|
||||||
|
; @clobbers r16, r17, r18, r19, r24, r25, X
|
||||||
|
|
||||||
|
objFreeTimers:
|
||||||
|
push yl
|
||||||
|
push yh
|
||||||
|
ldd r16, Y+OBJ_OFFS_TIMERS_LO
|
||||||
|
ldd r17, Y+OBJ_OFFS_TIMERS_HI
|
||||||
|
clr r18
|
||||||
|
std Y+OBJ_OFFS_TIMERS_LO, r18
|
||||||
|
std Y+OBJ_OFFS_TIMERS_HI, r18
|
||||||
|
mov yl, r16
|
||||||
|
mov yh, r17
|
||||||
|
ldi zl, LOW(Obj_Timer_free)
|
||||||
|
ldi zh, HIGH(Obj_Timer_free)
|
||||||
|
rcall List_ForEveryObject ; (r16, r17, r18, r19, r24, r25, X, Y)
|
||||||
|
pop yh
|
||||||
|
pop yl
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine OBJ_Link_new @global
|
||||||
|
;
|
||||||
|
; @return CF set if okay, cleared on error
|
||||||
|
; @return Y pointer to SRAM for link
|
||||||
|
; @clobbers r16, r17, X
|
||||||
|
|
||||||
|
OBJ_Link_new:
|
||||||
|
ldi r24, LOW(OBJ_LINK_SIZE)
|
||||||
|
ldi r25, HIGH(OBJ_LINK_SIZE)
|
||||||
|
rcall Heap_Alloc
|
||||||
|
brcc OBJ_Link_new_end
|
||||||
|
mov yl, xl
|
||||||
|
mov yh, xh
|
||||||
|
clr r16
|
||||||
|
ldi r17, OBJ_LINK_SIZE
|
||||||
|
bigcall Utils_FillSram ; (R17, X)
|
||||||
|
rcall List_InitObject ; (R16)
|
||||||
|
sec
|
||||||
|
OBJ_Link_new_end:
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine OBJ_Link_free @global
|
||||||
|
;
|
||||||
|
; @param Y pointer to SRAM for link
|
||||||
|
; @clobbers r16, r17, r24, r25, X
|
||||||
|
|
||||||
|
OBJ_Link_free:
|
||||||
|
rcall List_FiniObject ; (R16)
|
||||||
|
mov xl, yl
|
||||||
|
mov xh, yh
|
||||||
|
rcall Heap_free ; (r16, r17, r24, r25, X)
|
||||||
|
clc
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine OBJ_Timer_new @global
|
||||||
|
;
|
||||||
|
; @return CF set if okay, cleared on error
|
||||||
|
; @return Y pointer to SRAM for timer
|
||||||
|
; @clobbers r16, r17, X
|
||||||
|
|
||||||
|
OBJ_Timer_new:
|
||||||
|
ldi r24, LOW(TIMER_SIZE)
|
||||||
|
ldi r25, HIGH(TIMER_SIZE)
|
||||||
|
rcall Heap_Alloc
|
||||||
|
brcc OBJ_Timer_new_end
|
||||||
|
mov yl, xl
|
||||||
|
mov yh, xh
|
||||||
|
clr r16
|
||||||
|
ldi r17, TIMER_SIZE
|
||||||
|
bigcall Utils_FillSram ; (R17, X)
|
||||||
|
rcall List_InitObject ; (R16)
|
||||||
|
sec
|
||||||
|
OBJ_Timer_new_end:
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
; ---------------------------------------------------------------------------
|
||||||
|
; @routine OBJ_Timer_free @global
|
||||||
|
;
|
||||||
|
; @param Y pointer to SRAM for timer
|
||||||
|
; @clobbers r16, r17, r24, r25, X
|
||||||
|
|
||||||
|
OBJ_Timer_free:
|
||||||
|
rcall List_FiniObject ; (R16)
|
||||||
|
mov xl, yl
|
||||||
|
mov xh, yh
|
||||||
|
rcall Heap_free ; (r16, r17, r24, r25, X)
|
||||||
|
clc
|
||||||
|
ret
|
||||||
|
; @end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -11,8 +11,11 @@
|
|||||||
|
|
||||||
; ---------------------------------------------------------------------------
|
; ---------------------------------------------------------------------------
|
||||||
; @routine WID_Widget_new @global
|
; @routine WID_Widget_new @global
|
||||||
|
;
|
||||||
|
; @param Y pointer to window SRAM
|
||||||
WID_Widget_new:
|
; @param r18 WID_OFFS_OPTIONS1
|
||||||
|
; @param r19 WID_OFFS_OPTIONS2
|
||||||
|
|
||||||
|
WID_Widget_Init:
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user