Skip to content

Commit 09536c7

Browse files
committed
Release 0.4.0
1 parent b425b4a commit 09536c7

File tree

9 files changed

+29
-5
lines changed

9 files changed

+29
-5
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[submodule "Linux Bootstrap"]
22
path = Linux Bootstrap
33
url = https://github.com/oriansj/mescc-tools-seed
4+
[submodule "seed"]
5+
path = seed
6+
url = https://github.com/oriansj/bootstrap-seeds

CHANGELOG.org

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,32 @@
1616

1717
* Current
1818
** Added
19+
Added High level prototype for stage1_assembler-0
20+
Added High level prototype for stage0_monitor
21+
Added High level prototype for CAT.s
22+
Added High level prototype for cc_x86.s
23+
Added posix-mode primtive getcwd
24+
Added High level prototype for cc_knight-native
25+
Added cc_knight-native.s
26+
Added High level prototype for cc_amd64
27+
Added cc_amd64.s
28+
Added High level prototype for cc_knight-posix
29+
Added cc_knight-posix.s
30+
Added High level prototype for cc_armv7l
31+
Added cc_armv7l.s
32+
Added High level prototype for cc_aarch64
33+
Added cc_aarch64.s
34+
Added submodule for universal bootstrap binaries
1935

2036
** Changed
37+
Modified cc_knight-native.s to generate output compatible with large binaries
2138

2239
** Fixed
40+
Eliminated the discrepency between stage1/stage1_assembler-2.s and stage1/stage1_assembler-2.hex1
2341

2442
** Removed
43+
Eliminated need for GCC to build hex.c to build the bootstrap binaries
44+
Eliminated floppy disk images
2545

2646
* 0.3.0 - 2020-01-18
2747
** Added

Linux Bootstrap

makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ vm-trace: vm.h vm.c vm_instructions.c vm_decode.c tty.c dynamic_execution_trace.
4040
# Build the roms
4141
ALL-ROMS: stage0_monitor stage1_assembler-0 SET DEHEX stage1_assembler-1 stage1_assembler-2 M0 CAT lisp cc_x86 forth
4242

43-
stage0_monitor: hex stage0/stage0_monitor.hex0 | roms
44-
./bin/hex < stage0/stage0_monitor.hex0 > roms/stage0_monitor
43+
stage0_monitor: vm stage0/stage0_monitor.hex0 | roms
44+
./bin/vm --rom seed/NATIVE/knight/hex0-seed --tape_01 stage0/stage0_monitor.hex0 --tape_02 roms/stage0_monitor
4545

46-
stage1_assembler-0: hex stage1/stage1_assembler-0.hex0 | roms
47-
./bin/hex < stage1/stage1_assembler-0.hex0 > roms/stage1_assembler-0
46+
stage1_assembler-0: vm stage1/stage1_assembler-0.hex0 | roms
47+
./bin/vm --rom seed/NATIVE/knight/hex0-seed --tape_01 stage1/stage1_assembler-0.hex0 --tape_02 roms/stage1_assembler-0
4848

4949
SET: stage1_assembler-2 vm stage1/SET.hex2 | roms
5050
./bin/vm --rom roms/stage1_assembler-2 --tape_01 stage1/SET.hex2 --tape_02 roms/SET

seed

Submodule seed added at 07b7929

x86/floppy_images/blank_floppy.img

-1.41 MB
Binary file not shown.

x86/floppy_images/stage0_monitor.img

-1.41 MB
Binary file not shown.
-1.41 MB
Binary file not shown.

x86/floppy_images/stage1_loader.img

-1.41 MB
Binary file not shown.

0 commit comments

Comments
 (0)