浏览代码

Better screenshots? (at 2:45 AM) (^;

refactor32
Jakob Kjær-Kammersgaard 5 年前
父节点
当前提交
df06daef9d
共有 8 个文件被更改,包括 9 次插入9 次删除
  1. 二进制
      ColoredCircle.png
  2. +4
    -4
      README.md
  3. 二进制
      SingSvimEdit.png
  4. 二进制
      SingSvimList.png
  5. +5
    -5
      build.sh
  6. 二进制
      screenshots/Sing32ColoredCircles.png
  7. +0
    -0
      screenshots/SingJustBooted.png
  8. 二进制
      screenshots/SingSvimEdit.png

二进制
ColoredCircle.png 查看文件

之前 之后
宽度: 720  |  高度: 400  |  大小: 48 KiB

+ 4
- 4
README.md 查看文件

@ -1,5 +1,5 @@
# SingOS
![Screenshot - just booted](SingJustBooted.png)
![Screenshot - just booted](screenshots/SingJustBooted.png)
SingOS is a single task operating system.
@ -12,8 +12,8 @@ It will also be posible to switch between 16, 32 and 64-bit mode
such that anything on very low level can be tested.
## Screenshots
![Screenshot - svim edit](SingSvimEdit.png)
![Screenshot - colored circle](ColoredCircle.png)
![Screenshot - svim edit](screenshots/SingSvimEdit.png)
![Screenshot - colored circle](screenshots/Sing32ColoredCircles.png)
## Build Instructions
You can build and run the OS with following command
@ -48,4 +48,4 @@ If you want to run SingOS on real hardware we recommend running it from a usb th
sudo dd if=/<PATH TO SING OS>/SingOS.img of=/dev/<DEVICE NUMBER FOR USB DRIVE> status=progress oflag=sync
```
Now, plug the drive in any x86 pc with BIOS support, push the power button, and enjoy! (^:
Now, plug the drive in any x86 pc with BIOS support, push the power button, and enjoy! (^:

二进制
SingSvimEdit.png 查看文件

之前 之后
宽度: 720  |  高度: 400  |  大小: 2.9 KiB

二进制
SingSvimList.png 查看文件

之前 之后
宽度: 720  |  高度: 400  |  大小: 4.6 KiB

+ 5
- 5
build.sh 查看文件

@ -1,13 +1,13 @@
#!/bin/bash
if [ "$1" != "run" ]; then
nasm -fbin bootloader.nasm -o bootloader.bin
nasm -fbin vbr.nasm -o vbr.bin
nasm -fbin filesystems/lsfs/test_lsfs.nasm -o lsfs.bin
nasm -fbin kernel.nasm -o kernel.bin
nasm -fbin bootloader.nasm -o bootloader.bin && \
nasm -fbin vbr.nasm -o vbr.bin && \
nasm -fbin filesystems/lsfs/test_lsfs.nasm -o lsfs.bin && \
nasm -fbin kernel.nasm -o kernel.bin && \
cat bootloader.bin vbr.bin lsfs.bin kernel.bin > SingOS.img
fi
if [ "$1" != "make" ]; then
qemu-system-x86_64 -drive index=0,format=raw,file=SingOS.img
qemu-system-x86_64.exe -drive index=0,format=raw,file=SingOS.img
fi

二进制
screenshots/Sing32ColoredCircles.png 查看文件

之前 之后
宽度: 1043  |  高度: 794  |  大小: 90 KiB

SingJustBooted.png → screenshots/SingJustBooted.png 查看文件


二进制
screenshots/SingSvimEdit.png 查看文件

之前 之后
宽度: 1157  |  高度: 607  |  大小: 30 KiB

正在加载...
取消
保存