Added 'objdump.c' for dumping the text segment of NED a.out files as a binary blob.
[ned1] / README.md
... / ...
CommitLineData
1# NED - Numeric Evaluation Device #
2
3## Description ##
4
5NED is an experimental CPU architecture.
6
7The folders `nedsim/`, `nedasm/` and `neddis/` form a simulator, assembler and
8disassembler for the NED architecture. More details can be found in the
9`README.md` located in the top level directory of each sub-project.
10
11A passive front panel, found in the `nedfp/` folder, works in conjunction with
12`nedsim`.
13
14Among other things, the `docs/` folder contains an architecture manual,
15instruction reference, and compatibility matrix for the various parts of NED.
16
17The `software/` folder contains assembly programs written for the NED
18architecture.
19
20## Status ##
21
22Everything from the Architecture Manual is implemented except the CMPSWP instruction.
23
24The calculator located under `software/` provides a tested, working example.
25
26## Installation ##
27
28A convenience makefile is included in this top level directory with targets
29`make all` and `make clean` which will compile/remove nedsim/nedasm/neddis.
30Binaries can be used in place or manually copied where desired.