ROSS is beginning
ROSS is beginning
Mainly, this OS is how I can get my feet wet in OS-making in 512-bytes. So far, I can get it to print the character ">". My best accomplishment yet, though I can do better. So, I'll update this page with info.
Current work on a OS: SauOS (project homepage: http://code.google.com/p/sauos/)
-
- Member
- Posts: 524
- Joined: Sun Nov 09, 2008 2:55 am
- Location: Pennsylvania, USA
Re: ROSS is beginning
Code: Select all
mov ax, 0x0E3E
int 0x10
Code: Select all
mov ax, 0xB800
mov es, ax
mov byte [es:0], '>'
- Firestryke31
- Member
- Posts: 550
- Joined: Sat Nov 29, 2008 1:07 pm
- Location: Throw a dart at central Texas
- Contact:
Re: ROSS is beginning
I managed to get a CLI that loaded and ran programs from a FAT12 floppy working in 512 bytes. Too bad by "working" I mean "it works if your PC is Bochs, but forget about RHW." I think you can still find a link in the announcements section.
I wish I could have found a 16-bit C compiler that was less than 64KB and easy to port to my executable format, then I would have at least considered getting it working on RHW.
I wish I could have found a 16-bit C compiler that was less than 64KB and easy to port to my executable format, then I would have at least considered getting it working on RHW.
Owner of Fawkes Software.
Wierd Al wrote: You think your Commodore 64 is really neato,
What kind of chip you got in there, a Dorito?
Re: ROSS is beginning
It's pretty pointless... but I made a CLI that worked on real hardware in 512 bytes..
it used this incredibly easy to interpret StoopidFS. It could list files and directories; print a file's contents as a string; and execute a file. All working from 16bit real mode.. which made things quite interesting lol
You can check it out at http://earlz.biz.tm/old_site/secos/SecOS_v1.0_all.zip if you like.. but it's not much
it used this incredibly easy to interpret StoopidFS. It could list files and directories; print a file's contents as a string; and execute a file. All working from 16bit real mode.. which made things quite interesting lol
You can check it out at http://earlz.biz.tm/old_site/secos/SecOS_v1.0_all.zip if you like.. but it's not much
Re: ROSS is beginning
Sh... I'm working on it now... soon it should get a shell!
Current work on a OS: SauOS (project homepage: http://code.google.com/p/sauos/)
Re: ROSS is beginning
Ok, I got a shell, and have it rebooting.
Current work on a OS: SauOS (project homepage: http://code.google.com/p/sauos/)