Skip to content

Commit a664447

Browse files
Update screenshots and add asm functions
1 parent 7fbd3a6 commit a664447

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed

examples/fileio_detect/screenshot.png

-152 Bytes
Loading

examples/fileio_tokens/screenshot.png

130 Bytes
Loading

src/ce/tice.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -767,6 +767,16 @@ void asm_ClrLCD(void);
767767
*/
768768
void asm_DrawStatusBar(void);
769769

770+
/**
771+
* Invalidate and clear stat variables
772+
*/
773+
void asm_DelRes(void);
774+
775+
/**
776+
* Invalidate and clear text shadow area
777+
*/
778+
void asm_ClrTxtShd(void);
779+
770780
/**
771781
* Colors used by the OS
772782
*/

src/ce/tice.src

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,11 @@
106106
.def _asm_MoveUp
107107
.def _asm_ClrLCDFull
108108
.def _asm_ClrLCD
109+
.def _asm_ClrTxtShd
109110
.def _asm_HomeUp
110111
.def _asm_RunIndicOn
111112
.def _asm_RunIndicOff
113+
.def _asm_DelRes
112114
.def _asm_DisableAPD
113115
.def _asm_EnableAPD
114116
.def _asm_DrawStatusBar
@@ -222,9 +224,11 @@ _asm_MoveDown equ 0207F4h
222224
_asm_MoveUp equ 020800h
223225
_asm_ClrLCDFull equ 020808h
224226
_asm_ClrLCD equ 02080Ch
227+
_asm_ClrTxtShd equ 020818h
225228
_asm_HomeUp equ 020828h
226229
_asm_RunIndicOn equ 020844h
227230
_asm_RunIndicOff equ 020848h
231+
_asm_DelRes equ 020E5Ch
228232
_asm_DisableAPD equ 021134h
229233
_asm_EnableAPD equ 021138h
230234
_asm_DrawStatusBar equ 021A3Ch

0 commit comments

Comments
 (0)