1
0
mirror of https://github.com/wfjm/w11.git synced 2026-04-20 02:32:56 +00:00

doc and comment updates [skip ci]

This commit is contained in:
wfjm
2022-12-25 09:07:26 +01:00
parent f0f12dc407
commit dc9005e98a
31 changed files with 67 additions and 45 deletions

View File

@@ -8,7 +8,7 @@ verification and not as diagnostic tool:
The codes can be executed
- in a w11 GHDL simulation, usually via a `ti_w11 -c7 -w -e <mac-file>`
- with SimH, usually via a `load <lda-file>`, `dep pc 200`, `cont`
- with `e11`, usually via a `mount pr: <lda-file>`, `boot pr:`
- with `E11`, usually via a `mount pr: <lda-file>`, `boot pr:`
The codes use the `SYSID` register to detect the execution environment,
see [usage of `SYSID` register](../../doc/w11a_diff_70_sysid_usage.md).
@@ -19,13 +19,13 @@ A [Makefile](Makefile) is provided with the targets
make alllst all .lst files
make allexp all exp.mac export files
make alltsim all SimH tests
make allte11 all e11 tests
make allte11 all E11 tests
make alltw11 all w11 GHDL simulation tests
make <tcode>.lda compile, create .lda + .lst
make <tcode>.lst compile, create .lst
make <tcode>.exp.mac compile with -E
make <tcode>.tsim run on SimH simulator
make <tcode>.te11 run on e11 simulator
make <tcode>.te11 run on E11 simulator
make <tcode>.tw11 run on w11 GHDL simulation (for C7)
```