-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from agn453/master
Initial upload from version 0.5.7
- Loading branch information
Showing
135 changed files
with
136,392 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.