Skip to content

Commit

Permalink
Merge pull request #1 from agn453/master
Browse files Browse the repository at this point in the history
Initial upload from version 0.5.7
  • Loading branch information
agn453 committed Aug 19, 2021
2 parents 4fe93ac + efe9e8e commit 34aec55
Show file tree
Hide file tree
Showing 135 changed files with 136,392 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Default is to keep crlf line endings
text=auto

README.md text eol=crlf
LICENSE text eol=crlf
*.c text eol=crlf linguist-language=C
*.h text eol=crlf linguist-language=C
*.as text eol=crlf linguist-language=Assembly
*.z80 text eol=crlf linguist-language=Assembly
339 changes: 339 additions & 0 deletions COPYING

Large diffs are not rendered by default.

58 changes: 58 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
2012-08-01 John Elliott

* zxcc-0.5.7 release.

* Fixed compilation on Mac OS X [Mike Naberezny].

2012-08-01 John Elliott

* Altered the BIOS traps to be jumps to calls rather than calls.
Mallard BASIC (and presumably other programs which assume the
BIOS jumpblock is composed of JMP xxxx instructions) will now
launch correctly.

2010-11-10 John Elliott

* zxcc-0.5.6 release.

* Fixed the implementation of the BIOS traps. Console I/O using
BIOS functions should now work.

2010-07-14 John Elliott

* Fixed a bug where the last record of files read using the
CP/M Plus multi-record I/O system was not being padded with
0x1A bytes [Volker Pohlers]

2009-11-03 John Elliott

* zxcc-0.5.4 release.

* Fixed a couple of string-formatting funnies.

2003-04-04 John Elliott

* zxcc-0.5.3 release.

* Commented out temporary debugging code from z80.c which should not
have been there (Andy Parkins).

2003-03-28 John Elliott

* zxcc-0.5.2 release.

* Bug fix: BDOS function 10 now takes pointer to unsigned char,
so that more than 128 bytes can be input (Andy Parkins).

* Bug fixes: Add missing "break;"s to the big switch in zxbdos.c,
so that functions 0x1F and 0x2E return the correct values.

* Implement functions 0x1F and 0x2E when compiling under Windows.

* Compile fix: Ignore the return value of sync() in cpmredir.

2001-07-27 John Elliott

* zxcc-0.5.0 release.

* First automake/autoconf version.
10 changes: 10 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## Process this file with automake to produce Makefile.in

SUBDIRS= . @LSUBDIRS@ Z80 bin
EXTRA_DIST= $(srcdir)/config/* $(srcdir)/zxcc.doc $(srcdir)/zxcc.html
pkgdata_DATA = zxcc.doc

ACLOCAL_AMFLAGS=-I m4

zxcc.doc: $(srcdir)/zxcc.html
lynx -dump $(srcdir)/zxcc.html > zxcc.doc

0 comments on commit 34aec55

Please sign in to comment.