1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2025-04-10 23:41:35 +00:00

Forgot to update portable VM eval stack size

This commit is contained in:
David Schmenk 2024-12-31 07:30:32 -08:00
parent 15ba3b9553
commit 2c1a243311

View File

@ -62,7 +62,7 @@ typedef uint16_t address;
* 6502 memory map
*/
#define MEM6502_SIZE 0x00010000
#define ESTK_SIZE 32
#define ESTK_SIZE 64
#define CMDLINE_STR 0x01FF
#define CMDLINE_BUF 0x0200
#define SYSPATH_STR 0x0280
@ -70,8 +70,8 @@ typedef uint16_t address;
/*
* Zero page VM locations matching Apple ZP
*/
#define ESTKH 0xC0 // Hi bytes of VM stack
#define ESTKL 0xD0 // Lo bytes of VM stack
#define ESTKH 0xA0 // Hi bytes of VM stack
#define ESTKL 0xC0 // Lo bytes of VM stack
#define FP 0xE0 // Frame pointer
#define FPL 0xE0
#define FPH 0xE1