Initial commit of files related to NED architecture.
authorAaron Taylor <ataylor@subgeniuskitty.com>
Sun, 23 Dec 2018 12:26:28 +0000 (04:26 -0800)
committerAaron Taylor <ataylor@subgeniuskitty.com>
Sun, 23 Dec 2018 12:26:28 +0000 (04:26 -0800)
commitbc5b63cf94c1f263bbe3757237b242f40711203b
treedec46633751ffef833609c465b55aaa1a296338e
Initial commit of files related to NED architecture.
Includes nedsim/nedasm/neddis and a calculator written in NED assembly.
41 files changed:
LICENSE.txt [new file with mode: 0644]
Makefile [new file with mode: 0644]
README.md [new file with mode: 0644]
common/main.mk [new file with mode: 0644]
docs/architecture_manual.md [new file with mode: 0644]
docs/compat_matrix.md [new file with mode: 0644]
docs/design_goals.md [new file with mode: 0644]
docs/instruction_reference.md [new file with mode: 0644]
misc/clocktest.c [new file with mode: 0644]
nedasm/Makefile [new file with mode: 0644]
nedasm/README.md [new file with mode: 0644]
nedasm/nedasm.c [new file with mode: 0644]
nedasm/nedasm_codegen.c [new file with mode: 0644]
nedasm/nedasm_codegen.h [new file with mode: 0644]
nedasm/nedasm_misc.h [new file with mode: 0644]
nedasm/nedasm_parser.c [new file with mode: 0644]
nedasm/nedasm_parser.h [new file with mode: 0644]
nedasm/nedasm_parser_extensions.c [new file with mode: 0644]
nedasm/nedasm_parser_extensions.h [new file with mode: 0644]
nedasm/nedasm_structures.c [new file with mode: 0644]
nedasm/nedasm_structures.h [new file with mode: 0644]
neddis/Makefile [new file with mode: 0644]
neddis/README.md [new file with mode: 0644]
neddis/neddis.c [new file with mode: 0644]
nedsim/Makefile [new file with mode: 0644]
nedsim/README.md [new file with mode: 0644]
nedsim/nedsim.c [new file with mode: 0644]
software/4func_calculator/Makefile [new file with mode: 0644]
software/4func_calculator/README.md [new file with mode: 0644]
software/4func_calculator/calc.asm [new file with mode: 0644]
software/README.md [new file with mode: 0644]
software/assembly_fragments/README.md [new file with mode: 0644]
software/assembly_fragments/ansi_escape.asm [new file with mode: 0644]
software/assembly_fragments/echo.asm [new file with mode: 0644]
software/assembly_fragments/labels.asm [new file with mode: 0644]
software/assembly_fragments/multiply.asm [new file with mode: 0644]
software/assembly_fragments/negation.asm [new file with mode: 0644]
software/assembly_fragments/subroutines/sr_itoa.asm [new file with mode: 0644]
software/assembly_fragments/subroutines/sr_subtract.asm [new file with mode: 0644]
software/assembly_fragments/subroutines/sr_terminalIO.asm [new file with mode: 0644]
software/assembly_fragments/subroutines/subroutines.asm [new file with mode: 0644]