Page 53 of 262

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

Posted: Wed Jun 23, 2010 1:23 pm
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

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

Posted: Wed Jun 23, 2010 5:17 pm
by dak91
my new remake, only few things implemented (driver and device system and some drivers)

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

Posted: Thu Jun 24, 2010 11:01 am
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. :)

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

Posted: Thu Jun 24, 2010 11:10 am
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

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

Posted: Thu Jun 24, 2010 2:54 pm
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.

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

Posted: Thu Jun 24, 2010 7:45 pm
by Nathan
Congratulations with your VBE improvement! =D>
Also, I loved the style of your mouse.

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

Posted: Sat Jun 26, 2010 3:56 am
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

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

Posted: Sat Jun 26, 2010 8:40 am
by gravaera
I really love your work, F2. Impressive as usual. Thanks for showing it :)

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

Posted: Sun Jun 27, 2010 9:15 am
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

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

Posted: Sun Jun 27, 2010 7:33 pm
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>

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

Posted: Mon Jun 28, 2010 3:43 am
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

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

Posted: Mon Jun 28, 2010 2:10 pm
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

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

Posted: Mon Jun 28, 2010 7:31 pm
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"

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

Posted: Tue Jun 29, 2010 3:30 am
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)

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

Posted: Tue Jun 29, 2010 3:38 am
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. ;)