Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1423,7 +1423,7 @@ Bruce Norskog originally wrote zmac in 1978.

Updates and bugfixes over the years by John Providenza, Colin Kelley,
and more recently by Russell Marks, Mark RISON, Chris Smith,
Matthew Phillips and Tim Mann.
Matthew Phillips, Tim Mann and Roman Standzikowski.

Extensive modifications for cycle counting, multiple output formats,
".rel" output, 8080 mode and older assembler compatibilty were written
Expand Down
6 changes: 4 additions & 2 deletions src/zmac.y
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,8 @@
* xh, xl, yh, yl, hx, lx, hy, ly alternates for ixh, ixy, iyh, iyl.
*
* gwp 21-1-24 %% expansion in macro to improve MRAS compatibility.
*
* rhs 28-1-26 Fix compilation errors reported by GCC 15.2.
*/

#if defined(__GNUC__)
Expand Down Expand Up @@ -742,7 +744,7 @@ void putout(int value);
int outrec;
int outlen;
unsigned char outbuf[1024 * 1024];
void bookmark();
void bookmark(int delay);
void listfrombookmark();


Expand Down Expand Up @@ -5925,7 +5927,7 @@ int nextchar()
{
int c, ch;
unsigned char *p;
char *getlocal();
char *getlocal(int c, int n);

if (peekc != NOPEEK) {
c = peekc;
Expand Down