Starting writing an ed implementation

This commit is contained in:
deadvey
2026-03-07 20:48:34 +00:00
parent 43d0a020f7
commit 7a9b82d57c
12 changed files with 126 additions and 83 deletions

View File

@@ -1,9 +1,14 @@
Kernel written in Assmebly
I'm using a modified JazzOS Bootloader
# What is this?
This is a simple implementation of a computer kernel
written in pure x86 assembly with features including
- Read/Write disk operations
- The ability to boot from the BIOS using the JazzOS Bootloader
- A modified MikeOS BASIC interpreter
- A functional POSIX inspired CLI
Commands:
CAT
HELP
CLEAR
REBOOT
PONG
# Commands
- CAT <filename>: outputs the contents of the file.
- LS: outputs a list of files on the system .
- CLEAR: clears the screen.
- REBOOT: or esc reboots the system
- BAS <filename>: runs a basic script.

View File

@@ -1,2 +1,2 @@
PORT OUT 80 5
PRINT "Hello World"
END

View File

@@ -1 +0,0 @@
x = 5