What does your OS look like? (Screen Shots..)

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
JwB
Posts: 5
Joined: Mon Jun 21, 2010 5:59 pm
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by JwB »

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 :lol:
zoofos_4.jpeg
dak91
Member
Member
Posts: 43
Joined: Thu Mar 12, 2009 3:27 am
Location: Sardegna (IT)

Re: What does your OS look like? (Screen Shots..)

Post by dak91 »

my new remake, only few things implemented (driver and device system and some drivers)
Attachments
2010-06-24-011628_1024x600_scrot.png
2010-06-24-011628_1024x600_scrot.png (4.42 KiB) Viewed 6865 times
User avatar
Nathan
Member
Member
Posts: 201
Joined: Sun Jul 19, 2009 1:48 pm
Location: Brazil
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by Nathan »

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 :lol:
zoofos_4.jpeg
You have a lot of time, to do all this things in just 2 days. Congratulations! =D>

dak91 wrote:my new remake, only few things implemented (driver and device system and some drivers)
You're doing a very good job with your OS. As I can see, you have already done the file system part. :)
dak91
Member
Member
Posts: 43
Joined: Thu Mar 12, 2009 3:27 am
Location: Sardegna (IT)

Re: What does your OS look like? (Screen Shots..)

Post by dak91 »

Nathan wrote:
dak91 wrote:my new remake, only few things implemented (driver and device system and some drivers)
You're doing a very good job with your OS. As I can see, you have already done the file system part. :)
Yes, I did, but I've no fully reimplemented it in this rewrite
User avatar
xvedejas
Member
Member
Posts: 168
Joined: Thu Jun 04, 2009 5:01 pm

Re: What does your OS look like? (Screen Shots..)

Post by xvedejas »

New anti-aliased fonts, and windows!

Image

it's not beautiful, but it works. You can drag the window around and it closes when you click the button.
User avatar
Nathan
Member
Member
Posts: 201
Joined: Sun Jul 19, 2009 1:48 pm
Location: Brazil
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by Nathan »

Congratulations with your VBE improvement! =D>
Also, I loved the style of your mouse.
User avatar
f2
Member
Member
Posts: 311
Joined: Mon Jun 15, 2009 10:01 am
Location: France

Re: What does your OS look like? (Screen Shots..)

Post by f2 »

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.

Image
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
User avatar
gravaera
Member
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..)

Post by gravaera »

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.
bontanu
Member
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..)

Post by bontanu »

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:

Image


Image
Ambition is a lame excuse for the ones not brave enough to be lazy; Solar_OS http://www.oby.ro/os/
User avatar
Nathan
Member
Member
Posts: 201
Joined: Sun Jul 19, 2009 1:48 pm
Location: Brazil
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by Nathan »

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.

Image
Wonderful design! =D>
User avatar
Nathan
Member
Member
Posts: 201
Joined: Sun Jul 19, 2009 1:48 pm
Location: Brazil
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by Nathan »

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:
Nice HD Explorer, also your BMP viewer/editor. :D
User avatar
Neolander
Member
Member
Posts: 228
Joined: Tue Mar 23, 2010 3:01 pm
Location: Uppsala, Sweden
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by Neolander »

The result of a 6 month effort : some long mode code finally being executed. My geek side celebrates. My human side sighs.
Capture.PNG
User avatar
Nathan
Member
Member
Posts: 201
Joined: Sun Jul 19, 2009 1:48 pm
Location: Brazil
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by Nathan »

Here is my simple OS made just for OSDev:
Image
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"
dak91
Member
Member
Posts: 43
Joined: Thu Mar 12, 2009 3:27 am
Location: Sardegna (IT)

Re: What does your OS look like? (Screen Shots..)

Post by dak91 »

Nathan wrote:Here is my simple OS made just for OSDev:
Image
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"
great, an arm project! (I had started to port my os for gba)
User avatar
Nathan
Member
Member
Posts: 201
Joined: Sun Jul 19, 2009 1:48 pm
Location: Brazil
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by Nathan »

dak91 wrote:great, an arm project! (I had started to port my os for gba)
Nice to see that you're interested in GBA. I'm going to do some entries at the wiki with some barebones, hardware specifications...

That isn't my OS, it's just a simple on for OSdev, but I will post my one soon. ;)
Post Reply