Restructure project directories
authorJonas Hvid <mail@johv.dk>
Sat, 17 Oct 2020 18:30:24 +0000 (20:30 +0200)
committerJonas Hvid <mail@johv.dk>
Sat, 17 Oct 2020 18:30:24 +0000 (20:30 +0200)
commit66af56e87b98d8a21bc85c426c7475373f899fa2
treedf91110e23acec842235378c8ff5eba820b1f418
parente528551bc019017d3a1313b9d8299d15cc5e3c82
Restructure project directories

We now split the project into three different directories:

- src/ for assembly code;
- init/ for Forth code that is run automatically;
- lib/ for Forth code that the user can type in.
16 files changed:
Makefile
README.md
bootstrap.asm [deleted file]
example.f [deleted file]
impl.asm [deleted file]
init/sys.f [new file with mode: 0644]
init/uefi.f [new file with mode: 0644]
lib/example.f [new file with mode: 0644]
main.asm [deleted file]
os/uefi.asm [deleted file]
src/bootstrap.asm [new file with mode: 0644]
src/impl.asm [new file with mode: 0644]
src/main.asm [new file with mode: 0644]
src/uefi.asm [new file with mode: 0644]
sys.f [deleted file]
uefi.f [deleted file]