versionable header for sim65
load and run address now configured from header fix error codes not to conflict with test fix test/misc/endless.c which is supposed to fail if an endless loop does not occur
This commit is contained in:
committed by
Oliver Schmidt
parent
07ca772932
commit
fb7d4acd5c
@@ -103,15 +103,6 @@ static void SetAX (CPURegs* Regs, unsigned Val)
|
||||
|
||||
|
||||
|
||||
static void MemWriteWord (unsigned Addr, unsigned Val)
|
||||
{
|
||||
MemWriteByte (Addr, Val);
|
||||
Val >>= 8;
|
||||
MemWriteByte (Addr + 1, Val);
|
||||
}
|
||||
|
||||
|
||||
|
||||
static unsigned char Pop (CPURegs* Regs)
|
||||
{
|
||||
return MemReadByte (0x0100 + ++Regs->SP);
|
||||
|
||||
Reference in New Issue
Block a user