diff options
author | H. Peter Anvin <hpa@zytor.com> | 2018-10-13 21:28:58 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2018-10-13 21:28:58 -0700 |
commit | 2815c25208db309a517ab2211016e5bcef1f660f (patch) | |
tree | 1188910f4b923bdecb55e1ef5ff12fdbc20973cf | |
parent | 9d728fda8458ebc042d3bcb07da6b2d88ccb602d (diff) | |
download | abcdisk-2815c25208db309a517ab2211016e5bcef1f660f.tar.gz abcdisk-2815c25208db309a517ab2211016e5bcef1f660f.tar.xz abcdisk-2815c25208db309a517ab2211016e5bcef1f660f.zip |
bac80: the restart prefix BASIC line length didn't change
... just because we removed the scratch byte after it.
-rw-r--r-- | bac80.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -141,7 +141,7 @@ static uint8_t run_prefix[] = { * part of the payload. */ static uint8_t restart_prefix[] = { - 0x10, 0x01, 0x00, 0x86, 0x81, 0xc7, + 0x11, 0x01, 0x00, 0x86, 0x81, 0xc7, 0x38, 0xfe, /* Point to scratch byte (ERRCODE) */ 0xba, 0x2c, 0xc7, 0, 0, /* CALL address goes here */ |