Skip to content

Commit

Permalink
Applications added, buffered read can be interrupted, asm updated
Browse files Browse the repository at this point in the history
  • Loading branch information
nihirash committed Jun 30, 2024
1 parent 1cbd22e commit 31d6333
Show file tree
Hide file tree
Showing 56 changed files with 30,115 additions and 16 deletions.
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
*.lst
*.bin
*.com
*.hex
*.prn
emul/
tmp/
emul.sh
emul.sh
src/zinc-shell/
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.06.24
2024.06.30
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Changelog

## Upcoming

* Now building with ez80asm 1.7

* Buffered read input can be interrupted with ESC key(with application shutdown)

* Applications directory added

* Set color control code

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ASM=ez80asm
ASM_FLAGS:=-i -l
ASM_FLAGS:=-i -l -v
SOURCES:=$(shell find src/zinc -type f -iname "*.asm")
BINARY=zinc.bin
EDOS=src/zinc/edos/edos.bin
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,6 @@ You can support me via my [Ko-Fi page](https://ko-fi.com/nihirash).

This project licensed with [Nihirash's Coffeeware License](LICENSE).

It isn't hard to respect it.
It isn't hard to respect it.

All third-party projects covered with their own licenses.
Binary file added apps/3rd-party/kermit/MLOAD25.COM
Binary file not shown.
Binary file added apps/3rd-party/kermit/bin/kermit.com
Binary file not shown.
5 changes: 5 additions & 0 deletions apps/3rd-party/kermit/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash
zxcc lasm cpsker
zxcc lasm cpxtyp
zxcc mload25 kermit=CPSKER,CPXTYP
mv kermit.com bin/
Loading

0 comments on commit 31d6333

Please sign in to comment.