ROSS is beginning

This forums is for OS project announcements including project openings, new releases, update notices, test requests, and job openings (both paying and volunteer).
Post Reply
User avatar
imate900
Member
Member
Posts: 80
Joined: Sat Feb 28, 2009 11:43 am

ROSS is beginning

Post by imate900 »

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/)
Image
JohnnyTheDon
Member
Member
Posts: 524
Joined: Sun Nov 09, 2008 2:55 am
Location: Pennsylvania, USA

Re: ROSS is beginning

Post by JohnnyTheDon »

Code: Select all

mov ax, 0x0E3E
int 0x10
or

Code: Select all

mov ax, 0xB800
mov es, ax
mov byte [es:0], '>'
You can most definitely do better.
User avatar
Firestryke31
Member
Member
Posts: 550
Joined: Sat Nov 29, 2008 1:07 pm
Location: Throw a dart at central Texas
Contact:

Re: ROSS is beginning

Post by Firestryke31 »

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.
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?
earlz
Member
Member
Posts: 1546
Joined: Thu Jul 07, 2005 11:00 pm
Contact:

Re: ROSS is beginning

Post by earlz »

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
User avatar
imate900
Member
Member
Posts: 80
Joined: Sat Feb 28, 2009 11:43 am

Re: ROSS is beginning

Post by imate900 »

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/)
Image
User avatar
imate900
Member
Member
Posts: 80
Joined: Sat Feb 28, 2009 11:43 am

Re: ROSS is beginning

Post by imate900 »

Ok, I got a shell, and have it rebooting.
Current work on a OS: SauOS (project homepage: http://code.google.com/p/sauos/)
Image
Post Reply