Skip to content

Commit 643bdeb

Browse files
committed
Release 0.0.2
1 parent 89bea5b commit 643bdeb

3 files changed

Lines changed: 8 additions & 10 deletions

File tree

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,8 @@ toolchains will provide those APIs.
3838
### Disclaimer
3939

4040
Please keep in mind, that **push** is, at its current state, an experiment
41-
(proof-of-concept) and not of any practical use, e.g. it lacks the ability
42-
to launch other programs, what could be considered a slight hinderence for
43-
widspread adoption.
41+
(proof-of-concept) and not of much practical use. Nevertheless it is fun to
42+
see the `test` command do its work, so give it a shot.
4443

4544
### Compilation
4645

@@ -51,7 +50,7 @@ push source like this:
5150
cc65/ kickc/ push/ z88dk/
5251
```
5352

54-
The Makefile contains various targets for compiling and testing:
53+
The Makefile in `./src` contains various targets for compiling and testing:
5554

5655
* **make** (build linux binary)
5756
* **make c64** (build C64 prg)

src/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
PROGRAM = push
2-
VERSION = 0.0.1
2+
VERSION = 0.0.2
33
SOURCES = main.c term.c lined.c cli.c
44

5-
export PATH=../zesarux/src:../kickc/bin:../z88dk/bin:$(shell echo $$PATH)
6-
export ZCCCFG=../z88dk/lib/config/
7-
export CC65_HOME=../cc65/
5+
export PATH=../../zesarux/src:../../kickc/bin:../../z88dk/bin:$(shell echo $$PATH)
6+
export ZCCCFG=../../z88dk/lib/config/
7+
export CC65_HOME=../../cc65/
88

99
DEFINES = -DVERSION=\"$(VERSION)\"
1010
TARGET = $(PROGRAM)-$(MACHINE)

src/cli.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ static const char input[] = {
5656
"version\r"
5757
"echo bye!\r"
5858
"sleep 5\r"
59-
//"reset\r"
60-
"sleep 1\r"
59+
"reset\r"
6160
};
6261

6362
#define KEYS \

0 commit comments

Comments
 (0)