What does your OS look like? (Screen Shots..)
Re: What does your OS look like? (Screen Shots..)
Hey thanks
In the last 2 days I've implemented a basic PCI enumerator, RTC driver and keyboard interrupts, as well as the ability to switch vga page... too much time on my hands
In the last 2 days I've implemented a basic PCI enumerator, RTC driver and keyboard interrupts, as well as the ability to switch vga page... too much time on my hands
Re: What does your OS look like? (Screen Shots..)
my new remake, only few things implemented (driver and device system and some drivers)
- Attachments
-
- 2010-06-24-011628_1024x600_scrot.png (4.42 KiB) Viewed 6913 times
Re: What does your OS look like? (Screen Shots..)
You have a lot of time, to do all this things in just 2 days. Congratulations!JwB wrote:Hey thanks
In the last 2 days I've implemented a basic PCI enumerator, RTC driver and keyboard interrupts, as well as the ability to switch vga page... too much time on my hands
You're doing a very good job with your OS. As I can see, you have already done the file system part.dak91 wrote:my new remake, only few things implemented (driver and device system and some drivers)
Re: What does your OS look like? (Screen Shots..)
Yes, I did, but I've no fully reimplemented it in this rewriteNathan wrote:You're doing a very good job with your OS. As I can see, you have already done the file system part.dak91 wrote:my new remake, only few things implemented (driver and device system and some drivers)
Re: What does your OS look like? (Screen Shots..)
New anti-aliased fonts, and windows!
it's not beautiful, but it works. You can drag the window around and it closes when you click the button.
it's not beautiful, but it works. You can drag the window around and it closes when you click the button.
Valix is an experiment in an interpreted userspace with object-oriented and functional design patterns. Developers needed! Join #valix on irc.freenode.net
Re: What does your OS look like? (Screen Shots..)
Congratulations with your VBE improvement!
Also, I loved the style of your mouse.
Also, I loved the style of your mouse.
Re: What does your OS look like? (Screen Shots..)
It's been a while I did not post screenshots of my Hydrogen OS. It has evolved a lot, is now multitasking, still have a GUI, has
command-line support and can run applications from a floppy disk. It is still written in x86 assembly.
command-line support and can run applications from a floppy disk. It is still written in x86 assembly.
Last edited by f2 on Fri Sep 17, 2010 4:09 am, edited 1 time in total.
"Open source seems to embrace the dark side of human nature." - Ville Turjanmaa
- gravaera
- Member
- Posts: 737
- Joined: Tue Jun 02, 2009 4:35 pm
- Location: Supporting the cause: Use \tabs to indent code. NOT \x20 spaces.
Re: What does your OS look like? (Screen Shots..)
I really love your work, F2. Impressive as usual. Thanks for showing it
17:56 < sortie> Paging is called paging because you need to draw it on pages in your notebook to succeed at it.
-
- Member
- Posts: 134
- Joined: Thu Aug 18, 2005 11:00 pm
- Location: Sol. Earth. Europe. Romania. Bucuresti
- Contact:
Re: What does your OS look like? (Screen Shots..)
Here are new screenshots for Solar OS:
1) showing the new Image control used to edit an BMP image loaded from the hard disk
2) the new Combo Box control:
1) showing the new Image control used to edit an BMP image loaded from the hard disk
2) the new Combo Box control:
Ambition is a lame excuse for the ones not brave enough to be lazy; Solar_OS http://www.oby.ro/os/
Re: What does your OS look like? (Screen Shots..)
Wonderful design!f2 wrote:It's been a while I did not post screenshots of my Hydrogen OS. It has evolved a lot, is now multitasking, still have a GUI, has
command-line support and can run applications from a floppy disk. It is still written in x86 assembly.
Re: What does your OS look like? (Screen Shots..)
Nice HD Explorer, also your BMP viewer/editor.bontanu wrote:Here are new screenshots for Solar OS:
1) showing the new Image control used to edit an BMP image loaded from the hard disk
2) the new Combo Box control:
Re: What does your OS look like? (Screen Shots..)
The result of a 6 month effort : some long mode code finally being executed. My geek side celebrates. My human side sighs.
Re: What does your OS look like? (Screen Shots..)
Here is my simple OS made just for OSDev:
And here is the code:
And here is the code:
Code: Select all
.arm
.text
.align 4
.global main
main:
mov r0, #0x4000000
mov r1, #0x400
add r1, r1, #3
strh r1, [r0
mov r0, #0x6000000
ldr r1, =pic
mov r2, #0x960
loop1:
ldmia r1!, { r3,r4,r5,r6,r7,r8,r9,r10 }
stmia r0!, { r3,r4,r5,r6,r7,r8,r9,r10 }
subs r2, r2, #1
bne loop1
infin:
b infin
.ltorg
pic:
.incbin "pic.bin"
Re: What does your OS look like? (Screen Shots..)
great, an arm project! (I had started to port my os for gba)Nathan wrote:Here is my simple OS made just for OSDev:
And here is the code:Code: Select all
.arm .text .align 4 .global main main: mov r0, #0x4000000 mov r1, #0x400 add r1, r1, #3 strh r1, [r0 mov r0, #0x6000000 ldr r1, =pic mov r2, #0x960 loop1: ldmia r1!, { r3,r4,r5,r6,r7,r8,r9,r10 } stmia r0!, { r3,r4,r5,r6,r7,r8,r9,r10 } subs r2, r2, #1 bne loop1 infin: b infin .ltorg pic: .incbin "pic.bin"
Re: What does your OS look like? (Screen Shots..)
Nice to see that you're interested in GBA. I'm going to do some entries at the wiki with some barebones, hardware specifications...dak91 wrote:great, an arm project! (I had started to port my os for gba)
That isn't my OS, it's just a simple on for OSdev, but I will post my one soon.