Skip to content
Snippets Groups Projects
Commit 87645232 authored by Jakob Kirsch's avatar Jakob Kirsch
Browse files

push while waiting...

parent 04973230
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,8 @@ run: os.img ...@@ -34,7 +34,8 @@ run: os.img
install: install:
dd if=os.img of=/dev/sdc dd if=os.img of=/dev/sdc
.PHONY: push .PHONY: push
push: push: clean software
mv os.img osall.iso
git add $(FILES) git add $(FILES)
git commit -m "$(M)" git commit -m "$(M)"
git push git push
...@@ -73,8 +74,7 @@ cdimg: os.img ...@@ -73,8 +74,7 @@ cdimg: os.img
genisoimage -pad -b os.img -R -o cd.img os.img genisoimage -pad -b os.img -R -o cd.img os.img
.PHONY: strip .PHONY: strip
strip: os.img strip: os.img
sed '$ s/\x00*$//' < os.img > tmp.img python3 strip.py
mv tmp.img os.img
.PHONY: runkvm .PHONY: runkvm
runkvm: os.img runkvm: os.img
qemu-system-x86_64 -drive file=$<,format=raw --enable-kvm -serial stdio qemu-system-x86_64 -drive file=$<,format=raw --enable-kvm -serial stdio
...@@ -450,6 +450,8 @@ os15: ...@@ -450,6 +450,8 @@ os15:
cs_command: cs_command:
mov si, line + 2 mov si, line + 2
xor ax, ax
xchg ax, cx
call xdigit ; Get a hexadecimal digit call xdigit ; Get a hexadecimal digit
mov cl,4 mov cl,4
shl al,cl shl al,cl
......
osall.iso 0 → 100644
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment