1
0
mirror of https://github.com/rzzzwilson/pymlac.git synced 2025-06-10 09:32:41 +00:00

Make iasm generate same format PTP files as pyasm

This commit is contained in:
Ross Wilson
2016-03-05 12:51:26 +07:00
parent d37fc2d7e8
commit 82451a93d6

View File

@@ -176,7 +176,7 @@ OPCODE opcodes[] =
* The PTR block loader, origin at 03700.
******/
#define ZEROLEADERSIZE 2
#define ZEROLEADERSIZE 16
WORD blkldr[] =
{
@@ -1330,6 +1330,9 @@ Pass2(void)
emitblock();
emitstart(WORDMASK);
for (int i = 0; i < ZEROLEADERSIZE; ++i)
emitbyte(0);
return TRUE;
}