Skip to content

Commit

Permalink
Update readme for wifi option
Browse files Browse the repository at this point in the history
  • Loading branch information
mengstr committed Mar 22, 2017
1 parent 59dcbc3 commit 084ef84
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ But not all hope is lost for those who want wifi and telnet - I'm currently
patching in an option to compile a version with about 36K RAM, wifi and one
less floppy disk.

![Screenshot wifi/telnet](/pic/wifi36k.png?raw=true "Connected over telnet")

The 36K RAM wifi/telnet option works kinda ok, but it only leaves about 5.9K free memory in MBASIC. And it is also too small run Turbo Pascal or the classic Ladder game.

### Installing, Compiling and Running

Expand Down Expand Up @@ -95,6 +98,16 @@ And then connect with:

Press Enter twice to autobaud to get the EMON:-prompt and then ```B <Enter>``` to Boot into CP/M.

**To compile with the wifi option enabled**

Either do a
```BUILD=WIFI make full```

or change the BUILD option in the Makefile.

After the full re-compile and upload of all disks you can connect via telnet port 23 (the default telnet port) after the red led (on the NodeMCU board) goes off. The led is lit as long as the wifi has not received the ip address via DHCP.


### Code folder contents:
- *CPM22/* The Z80 assembly sources for CP/M 2.2
- *disks/* Have sub-folders with the files to be put into the simulated disks
Expand Down
2 changes: 1 addition & 1 deletion code/z80/z80user.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ extern "C" {
//#endif

typedef struct MACHINE {
int is_done;
Z80_STATE state;
unsigned char memory[CPMMEMORY];
int is_done;
} MACHINE;

extern void SystemCall(MACHINE *m, int opcode, int val, int inst);
Expand Down
Binary file added pic/wifi36k.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 084ef84

Please sign in to comment.