1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2024-07-01 07:29:32 +00:00

Not loading NOJIT interpreter correctly

This commit is contained in:
David Schmenk 2019-12-28 17:36:34 -08:00
parent 64f4f56379
commit f5b0fb86b4
3 changed files with 2 additions and 18 deletions

View File

@ -80,7 +80,7 @@ SEGSTART = $2000
LDA DSTH
CMP #$B8
BNE -
LDA #$00 ; INIT JIT, FRAME & POOL POINTERS
LDA #$00 ; INIT FRAME & POOL POINTERS
STA PPL
STA IFPL
LDA #$A0 ; TOP OF RAM FOR FRAME POINER

View File

@ -1,19 +1,4 @@
include "inc/cmdsys.plh"
sysflags nojitc // Keep JITC from compiling itself
//
// JIT compiler values
//
//
// Indirect interpreter DEFinition entrypoint
//
struc t_defentry
byte interpjsr
word interpaddr
word bytecodeaddr
byte bytecodexbyte
byte callcount
byte bytecodesize
end
//
// Private addresses
//

View File

@ -11,7 +11,6 @@ const reshgr1 = $0010
const reshgr2 = $0020
const resxhgr1 = $0040
const resxhgr2 = $0080
const nojitc = $0100
//
// Module don't free memory
//
@ -50,7 +49,7 @@ word syspath
word cmdlnptr
word = @execmod, @open, @close, @read, @write
byte perr
byte jitcount = 0
byte jitcount = 0 // Keep these here for compatibility
byte jitsize = 0
byte refcons = 0
byte devcons = 0