mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-18 10:38:05 +11:00
ti84: wip
Gave more priority to CPU in the emulator because initialization would otherwise be horrendously slow.
This commit is contained in:
parent
114e753b64
commit
58ec54fc97
16
blk/555
16
blk/555
@ -1 +1,15 @@
|
||||
1 3 LOADR+
|
||||
( Required config: TI_MEM )
|
||||
: TI_MEM+ [ TI_MEM LITN ] @ + ;
|
||||
: LCD_PORT_CMD 0x10 ; : LCD_PORT_DATA 0x11 ;
|
||||
: FNTW 3 ; : FNTH 5 ;
|
||||
( Wait until the lcd is ready to receive a command. It's a bit
|
||||
weird to implement a waiting routine in asm, but the forth
|
||||
version is a bit heavy and we don't want to wait longer than
|
||||
we have to. )
|
||||
: LCDWAIT
|
||||
BEGIN,
|
||||
LCD_PORT_CMD INAn,
|
||||
RLA, ( When 7th bit is clr, we can send a new cmd )
|
||||
JRC, AGAIN,
|
||||
;CODE
|
||||
: LCD$ H@ TI_MEM ! FNTH 2 * 2+ ALLOT ;
|
||||
|
6
blk/556
6
blk/556
@ -1,9 +1,3 @@
|
||||
( Required config: TI_MEM )
|
||||
: TI_MEM+ [ TI_MEM LITN ] @ + ;
|
||||
: LCD_PORT_CMD 0x10 ;
|
||||
: LCD_PORT_DATA 0x11 ;
|
||||
: FNTW 3 ;
|
||||
: FNTH 5 ;
|
||||
( Current Y position on the LCD, that is, where we're going to
|
||||
spit our next glyph. )
|
||||
: LCD_CURY 0 TI_MEM+ ;
|
||||
|
11
blk/557
11
blk/557
@ -1,13 +1,8 @@
|
||||
|
||||
: _wait ( Wait until the lcd is ready to receive a command )
|
||||
( When 7th bit is cleared, we can send a new command )
|
||||
BEGIN LCD_PORT_CMD PC@ 0x80 AND NOT UNTIL ;
|
||||
: _cmd LCD_PORT_CMD PC! _wait ;
|
||||
: _data! LCD_PORT_DATA PC! _wait ;
|
||||
: _data@ LCD_PORT_DATA PC@ _wait ;
|
||||
: _cmd LCD_PORT_CMD PC! LCDWAIT ;
|
||||
: _data! LCD_PORT_DATA PC! LCDWAIT ;
|
||||
: _data@ LCD_PORT_DATA PC@ LCDWAIT ;
|
||||
: LCDOFF 0x02 ( CMD_DISABLE ) _cmd ;
|
||||
: _col! ( col -- )
|
||||
0x20 ( CMD_COL ) + _cmd ;
|
||||
: _row! ( row -- )
|
||||
0x80 ( CMD_ROW ) + _cmd ;
|
||||
: LCD$ H@ TI_MEM ! FNTH 2 * 2+ ALLOT ;
|
||||
|
@ -225,11 +225,8 @@ void draw_pixels()
|
||||
void event_loop()
|
||||
{
|
||||
while (1) {
|
||||
emul_step();
|
||||
emul_steps(100);
|
||||
if (lcd_changed) {
|
||||
// To avoid overdrawing, we'll let the CPU run a bit to finish its
|
||||
// drawing operation.
|
||||
emul_steps(100);
|
||||
draw_pixels();
|
||||
}
|
||||
// A low tech way of checking when the window was closed. The proper way
|
||||
|
@ -11,10 +11,13 @@ RAMSTART 0x70 + CONSTANT TI_MEM
|
||||
CURRENT @ XCURRENT !
|
||||
|
||||
282 LOAD ( boot.z80 )
|
||||
555 LOAD ( ti.z80 )
|
||||
393 LOAD ( icore )
|
||||
(entry) _
|
||||
( Update LATEST )
|
||||
PC ORG @ 8 + !
|
||||
," 42 42 PC! BYE "
|
||||
422 437 XPACKR ( core )
|
||||
556 558 XPACKR ( ti )
|
||||
," 42 42 PC! LCD$ 43 43 PC! BYE "
|
||||
ORG @ 256 /MOD 2 PC! 2 PC!
|
||||
H@ 256 /MOD 2 PC! 2 PC!
|
||||
|
Loading…
Reference in New Issue
Block a user