mu/shell/README.md

79 lines
2.0 KiB
Markdown
Raw Normal View History

2021-03-09 04:57:11 +00:00
### A prototype shell for the Mu computer
Currently runs a tiny subset of Lisp. Steps to run it from the top-level:
2021-03-09 04:57:11 +00:00
1. Build it:
2021-03-09 05:04:38 +00:00
```sh
2021-04-17 03:26:42 +00:00
$ ./translate shell/*.mu # generates code.img
```
2. Run it:
```sh
$ qemu-system-i386 -m 2G code.img
```
2021-03-24 04:53:41 +00:00
or:
```
$ bochs -f bochsrc # _much_ slower
2021-03-24 04:53:41 +00:00
```
To save typing in a large s-expression, create a secondary disk for data:
```sh
$ dd if=/dev/zero of=data.img count=20160
```
Load an s-expression into it:
```sh
$ echo '(+ 1 1)' |dd of=data.img conv=notrunc
```
2021-04-24 04:36:48 +00:00
You can also try one of the files of definitions in this directory (`*.limg`).
```sh
2021-04-26 04:35:14 +00:00
$ cat data.limg |dd of=data.img conv=notrunc
2021-04-24 04:36:48 +00:00
```
2021-03-23 05:28:35 +00:00
Now run with both code and data disks:
```sh
$ qemu-system-i386 -m 2G -hda code.img -hdb data.img
2021-03-09 04:57:11 +00:00
```
2021-03-24 04:53:41 +00:00
or:
```
$ bochs -f bochsrc.2disks
```
2021-03-09 05:03:15 +00:00
2021-04-26 16:42:05 +00:00
You can type in expressions, hit `ctrl-s` to see their results, and hit
`ctrl-m` to focus on the `...` below and browse how the results were computed.
[Here's a demo.](https://archive.org/details/akkartik-2min-2021-02-24) The
bottom of the screen shows context-dependent keyboard shortcuts (there's no
mouse in the Mu computer at the moment).
2021-03-09 05:03:15 +00:00
2021-04-24 04:49:28 +00:00
*Improvements*
If your Qemu installation supports them, one of these commandline arguments
may speed up emulation:
- `-enable-kvm`
- `-accel ___` (run with `-accel help` for a list of available options)
As a complete example, here's the command I typically use on Linux:
```
$ qemu-system-i386 -m 2G -enable-kvm -hda code.img -hdb data.img
2021-04-24 04:49:28 +00:00
```
2021-03-09 05:03:15 +00:00
*Known issues*
* Don't press keys too quickly (such as by holding down a key). The Mu
computer will crash (and often Qemu will segfault).
2021-04-25 23:02:30 +00:00
* Mu currently assumes access to 2GB of RAM. To change that, modify the
definition of `Heap` in 120allocate.subx, and then modify the `-m 2G`
argument in the Qemu commands above. Mu currently has no virtual
memory. If your Heap is too large for RAM, allocating past the end of RAM
will succeed. However, accessing addresses not backed by RAM will fail with
this error:
```
lookup: failed
```