Added 'objdump.c' for dumping the text segment of NED a.out files as a binary blob.
[ned1] / software / README.md
CommitLineData
bc5b63cf
AT
1NED Software
2============
3
4This directory contains software written for NED.
5
6Each folder contains a `README.md` that specifies the required version of
7`nedasm`. Remember to check `../docs/compat_matrix.md` to determine
8corresponding compatible `nedsim` versions.
9
10Most software in this directory includes targets `make` for building, `make
11sim` for execution, and `make clean` for cleanup. The first two require
12`nedasm` and `nedsim` in the user's `PATH` or a full path in
13`../common/main.mk` for the `NEDASM` and `NEDSIM` variables.
14
15Program Listing
16===============
17
18 4func_calculator/
19
20An integer only, four function, stack based calculator. The first non-trivial
21program written for NED.
22
23 assembly_fragments/
24
25This folder contains fragments of assembly code used during the development of
26nedasm. They are of little interest on their own.