├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── blocks ├── bootstrap.fth ├── editor.fth ├── feddy.fth ├── filesystem.fth ├── grep.fth └── install.fth ├── boot.s ├── files ├── alters.fth ├── asm32.fth ├── asmtest.fth ├── fed.fth ├── fedext.fth ├── fsck.fth ├── fsext.fth ├── go32.fth ├── test.fth └── x86.txt ├── run.sh ├── scripts ├── compress.py ├── filesystem.py ├── mkdisk.py ├── name_release.py └── splitdisk.py ├── shell.nix └── uefix.s /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: NieDzejkob 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.img 2 | build/ 3 | __pycache__/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/README.md -------------------------------------------------------------------------------- /blocks/bootstrap.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/blocks/bootstrap.fth -------------------------------------------------------------------------------- /blocks/editor.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/blocks/editor.fth -------------------------------------------------------------------------------- /blocks/feddy.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/blocks/feddy.fth -------------------------------------------------------------------------------- /blocks/filesystem.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/blocks/filesystem.fth -------------------------------------------------------------------------------- /blocks/grep.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/blocks/grep.fth -------------------------------------------------------------------------------- /blocks/install.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/blocks/install.fth -------------------------------------------------------------------------------- /boot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/boot.s -------------------------------------------------------------------------------- /files/alters.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/files/alters.fth -------------------------------------------------------------------------------- /files/asm32.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/files/asm32.fth -------------------------------------------------------------------------------- /files/asmtest.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/files/asmtest.fth -------------------------------------------------------------------------------- /files/fed.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/files/fed.fth -------------------------------------------------------------------------------- /files/fedext.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/files/fedext.fth -------------------------------------------------------------------------------- /files/fsck.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/files/fsck.fth -------------------------------------------------------------------------------- /files/fsext.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/files/fsext.fth -------------------------------------------------------------------------------- /files/go32.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/files/go32.fth -------------------------------------------------------------------------------- /files/test.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/files/test.fth -------------------------------------------------------------------------------- /files/x86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/files/x86.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/run.sh -------------------------------------------------------------------------------- /scripts/compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/scripts/compress.py -------------------------------------------------------------------------------- /scripts/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/scripts/filesystem.py -------------------------------------------------------------------------------- /scripts/mkdisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/scripts/mkdisk.py -------------------------------------------------------------------------------- /scripts/name_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/scripts/name_release.py -------------------------------------------------------------------------------- /scripts/splitdisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/scripts/splitdisk.py -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/shell.nix -------------------------------------------------------------------------------- /uefix.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meithecatte/miniforth/HEAD/uefix.s --------------------------------------------------------------------------------