Compare commits
3 Commits
277c06b999
...
6c30d96e96
| Author | SHA1 | Date | |
|---|---|---|---|
| 6c30d96e96 | |||
| 2ff0c2ada1 | |||
| e5ee3fe076 |
11
README.md
11
README.md
@@ -1,5 +1,16 @@
|
|||||||
# Wipforth
|
# Wipforth
|
||||||
|
|
||||||
|
Wipforth is a simple Forth implementation that runs in the WebAssembly
|
||||||
|
virtual machine. It does I/O via memory-mapped peripherals, which are
|
||||||
|
emulated in JavaScript.
|
||||||
|
|
||||||
|
- For the Forth kernel, see [wipforth.wat](./wipforth.wat)
|
||||||
|
- For the JavaScript emulator, see [emu.js](./emu.js)
|
||||||
|
- For the Forth prelude, which is loaded at start-up, see
|
||||||
|
[prelude.f](./prelude.f)
|
||||||
|
- For a description of the peripherals, see the
|
||||||
|
[Peripherals](#peripherals) section below.
|
||||||
|
|
||||||
## Building and Running
|
## Building and Running
|
||||||
|
|
||||||
To run, first compile the WebAssembly module:
|
To run, first compile the WebAssembly module:
|
||||||
|
|||||||
BIN
favicon.png
Normal file
BIN
favicon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 516 B |
@@ -3,6 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<title>Wipforth</title>
|
<title>Wipforth</title>
|
||||||
<link rel="stylesheet" type="text/css" href="styles.css"/>
|
<link rel="stylesheet" type="text/css" href="styles.css"/>
|
||||||
|
<link rel="icon" type="image/png" href="favicon.png"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript" src="emu.js"></script>
|
<script type="text/javascript" src="emu.js"></script>
|
||||||
|
|||||||
Reference in New Issue
Block a user