Commit Graph

138 Commits

Author SHA1 Message Date
Ry
59c688fc87 kernel/fxf/launch: Specify disk ID, and fix issue with argument passing 2023-03-22 22:25:55 -07:00
Ry
8103ec8bcd kernel/fxf and launcher: Add and use launch_fxf_from_disk syscall 2023-03-22 22:18:33 -07:00
Ry
22c8e1f820 bg: Use data.strz for the filename 2023-03-22 16:36:25 -07:00
Ry
4e0ab3a75d sh/launch: Use ryfs_open directly instead of open for now 2023-03-20 17:32:14 -07:00
Ry
60a322ca53 kernel+apps: Use a more standard filename format (8.3 with no spaces) 2023-03-15 17:53:45 -07:00
Ry
76d669bfda Makefile: Add clean target 2023-03-15 17:02:55 -07:00
Ry
189f54dac4 Bump version to 0.2.0 2023-03-06 18:11:17 -08:00
Ry
f47892c133 kernel/main: Add a fox32rom API version check 2023-03-06 17:29:06 -08:00
Ry
6253b60762 sh: Fix inverted condition in the disk command 2023-03-05 17:39:29 -08:00
Ry
f7752e7c08 kernel/main: Only set rsp if we aren't running under an existing kernel 2023-03-05 17:36:30 -08:00
Ry
6318fbb6f9 bg: Use the "current" disk id 2023-03-05 17:30:51 -08:00
Ry
f50463891a Actions: Upload romdisk.img 2023-03-04 23:37:41 -08:00
Ry
fb3eac0d98 terminal/task: Use the "current" disk id 2023-03-04 23:36:17 -08:00
Ry
ebbc2fa81e sh: Use the "current" disk id 2023-03-04 23:35:54 -08:00
Ry
31b19537c8 Build a minimal romdisk image 2023-03-04 23:35:34 -08:00
Ry
f99c3d63c1 kernel/main: Keep track of the "current disk" 2023-03-04 23:34:00 -08:00
Ry
63fe33cdc9 bootloader: Pass the boot disk id to the kernel 2023-03-04 21:29:12 -08:00
Ry
b51e17a4cf bootloader: Include magic bytes to show that this disk is bootable 2023-03-04 18:15:10 -08:00
Ry
8d3ef81cba terminal/text: Treat delete (ASCII 127) as backspace 2023-02-16 22:02:52 -08:00
Ry
9aca4e2e57 kernel/vfs: Update outdated comment 2023-02-08 16:05:08 -08:00
Ry
2ed47446a0 kernel/task: Add save_state_and_yield_task 2023-02-07 16:27:23 -08:00
Ry
b919faaeb4 kernel/window: Update outdated comment 2023-02-06 23:57:50 -08:00
Ry
8bfd66941d sh/dir: Show file sizes 2023-02-04 17:34:20 -08:00
Ry
6c4790cd5f sh/dir: Add a space between the file name and type, and show a header 2023-02-04 16:37:34 -08:00
Ry
f37c9b37bd sh: Move terminal control character consts to main.asm 2023-02-04 16:29:47 -08:00
Ry
36f76ed12d serial: Add missing ret to print_str_to_terminal 2023-02-04 16:19:09 -08:00
Ry
d4afc36f49 sh/help: Use const for setting the color 2023-02-04 16:15:47 -08:00
Ry
2688e8082d kernel/task: Add comment saying registers are not saved across yields 2023-02-02 16:21:29 -08:00
Ry
e83676567e
Merge pull request #15 from neuschaefer/dev
Serial terminal proof-of-concept
2023-02-02 02:07:43 -08:00
Ry
ec79dcf030
Merge pull request #14 from neuschaefer/dev
Make use of data.strz
2023-02-02 01:49:26 -08:00
jn
bef0aa9700 Add serial.fxf: Serial terminal 2023-02-02 04:08:18 +01:00
jn
d03d49ac44 Move scancode-to-ASCII conversion into the terminal 2023-02-02 04:07:57 +01:00
jn
ffdda5eaca Make use of data.strz
The filesystem image is the same before and after this commit:

$ sha256sum fox32os-orig.img fox32os.img
abc77bd6310b8eb6bcde0a8a442ca8bab071307a6cf5155ea606578435f77d27  fox32os-orig.img
abc77bd6310b8eb6bcde0a8a442ca8bab071307a6cf5155ea606578435f77d27  fox32os.img


The conversion was performed with a few sed commands:

find -name '*.asm' | xargs sed -i -e 's/data.str \("[^"]*"\) data.8 0$/data.strz \1/g'
find -name '*.asm' | xargs sed -i -e 's/data.str \("[^"]*"\) data.8 0 /data.strz \1 /g'
find -name '*.asm' | xargs sed -i -e 's/data.str \("[^"]*"\) data.8 0x00 /data.strz \1 /g'
2023-02-02 03:03:07 +01:00
Ry
5708227a61 kernel/main: Detect if disk 1 is a valid FXF binary before running it 2023-02-01 15:43:21 -08:00
Ry
e1da81f314
Merge pull request #13 from neuschaefer/dev
Stream overhaul
2023-02-01 15:21:45 -08:00
jn
8fe903a9ff kernel/vfs: Don't ignore buffer length in read(stream) 2023-02-02 00:00:37 +01:00
jn
73eee3e599 kernel/vfs: Don't ignore buffer length in write(stream) 2023-02-02 00:00:37 +01:00
Ry
d94611a250
Merge pull request #12 from neuschaefer/dev
Misc.
2023-02-01 14:55:21 -08:00
jn
46f44cdf30 Makefile: simplify fox32os.img rule 2023-02-01 23:41:30 +01:00
jn
c9457baa42 Let users provide their own startup.cfg without pain
Users can now edit base_image/startup.cfg without git paying attention
to it. Typing `make` and using the default works, too.
2023-02-01 23:41:30 +01:00
jn
38ccc043c1 Add fox32os convenience script
It invokes the fox32 emulator with fox32os.img in the first disk slot.
2023-02-01 23:41:30 +01:00
Ry
9c55c79d85
Merge pull request #11 from neuschaefer/dev
Add file type check to parse_fxf_binary
2023-02-01 13:41:08 -08:00
jn
205e00dc08 Add file type check to parse_fxf_binary 2023-02-01 20:07:09 +01:00
Ry
5b355a34b9 sh: help should list commands in alphabetical order 2023-01-31 22:38:14 -08:00
Ry
652c3b70c2 sh: Make help have a little bit of color 2023-01-31 22:03:40 -08:00
Ry
cae9ffdd28 terminal: Support multiple colors 2023-01-31 22:03:24 -08:00
Ry
2a8eb5b267 sh: Properly handle dir on an empty disk
Fixes issue #8.
2023-01-30 14:16:59 -08:00
Ry
01fd9a5eac
Merge pull request #10 from neuschaefer/dev
sh: Add shutdown command
2023-01-30 13:06:31 -08:00
jn
5641fc6987 sh: Add shutdown command 2023-01-30 18:56:50 +01:00
Ry
75a10ffdc3 kernel: Show an error if running on top of an existing kernel 2023-01-25 18:13:45 -08:00