OSDev.org

The Place to Start for Operating System Developers
It is currently Fri Apr 19, 2024 4:23 pm

All times are UTC - 6 hours




Post new topic Reply to topic  [ 3898 posts ]  Go to page Previous  1 ... 194, 195, 196, 197, 198, 199, 200 ... 260  Next
Author Message
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Apr 12, 2017 2:26 pm 
Offline
Member
Member
User avatar

Joined: Fri Jan 27, 2017 12:15 pm
Posts: 149
Location: Belgium
0.o

_________________
AQUA OS: https://obiwac.wordpress.com/aqua-os/


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Thu Apr 13, 2017 3:34 pm 
Offline
Member
Member

Joined: Tue Feb 28, 2017 10:22 am
Posts: 25
Still working on paging for now...

Image


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri Apr 14, 2017 3:01 am 
Offline
Member
Member

Joined: Thu May 17, 2007 1:27 pm
Posts: 999
pcmattman wrote:
Pedigree kernel + Debian userspace + Xnest on the system running QEMU. :-)

I'm cheating a little bit by booting to single-user mode, mostly just to test the basics (e.g. xclock, xterm) before letting the userspace try and run gdm and its own X server.

I'm not sure I understand what is going on. Is your OS running Xnest which redirects the X output to the host OS? Did you port stuff like an init system, ifup/down and the ALSA user-space to your OS? That is quite a remarkable achievement! Did you have to implement many Linux specific system calls/interfaces in order to be able to do that? :D

_________________
managarm: Microkernel-based OS capable of running a Wayland desktop (Discord: https://discord.gg/7WB6Ur3). My OS-dev projects: [mlibc: Portable C library for managarm, qword, Linux, Sigma, ...] [LAI: AML interpreter] [xbstrap: Build system for OS distributions].


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat Apr 15, 2017 6:50 am 
Offline
Member
Member
User avatar

Joined: Fri Aug 07, 2015 6:13 am
Posts: 1134
Post Update: Thank you guys for pointing out that my values were wrong, it is all fixed now.
A brand new and improved panic screen (updated picture):
Attachment:
NewPanicScreenUpdated.png
NewPanicScreenUpdated.png [ 11.83 KiB | Viewed 4315 times ]

Started working on some memory management:
Attachment:
MemoryMap.png
MemoryMap.png [ 28.29 KiB | Viewed 4531 times ]

_________________
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader


Last edited by Octacone on Tue Apr 18, 2017 6:39 am, edited 1 time in total.

Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat Apr 15, 2017 7:18 am 
Offline
Member
Member
User avatar

Joined: Mon Jul 18, 2016 2:46 pm
Posts: 170
Your Stack-Selector looks wrong though


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat Apr 15, 2017 8:21 am 
Offline
Member
Member
User avatar

Joined: Fri Feb 17, 2017 4:01 pm
Posts: 642
Location: Ukraine, Bachmut
i wasn't into x86 too long, don't even know if this possible for a 16-bit register to hold a 24-bit value.) btw, it definitely points to some code near the current IP.

_________________
ANT - NT-like OS for x64 and arm64.
efify - UEFI for a couple of boards (mips and arm). suspended due to lost of all the target park boards (russians destroyed our town).


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat Apr 15, 2017 9:49 am 
Offline
Member
Member
User avatar

Joined: Fri Aug 07, 2015 6:13 am
Posts: 1134
Ch4ozz wrote:
Your Stack-Selector looks wrong though


Update: it is all good, because of ring 0

zaval wrote:
i wasn't into x86 too long, don't even know if this possible for a 16-bit register to hold a 24-bit value.) btw, it definitely points to some code near the current IP.

Update: All the values are 32 bit, 16 bit values are properly translated.

_________________
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader


Last edited by Octacone on Tue Apr 18, 2017 6:42 am, edited 1 time in total.

Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat Apr 15, 2017 12:57 pm 
Offline
Member
Member
User avatar

Joined: Fri Feb 17, 2017 4:01 pm
Posts: 642
Location: Ukraine, Bachmut
I meant SS. Your printing code prints something else instead of SS.)

_________________
ANT - NT-like OS for x64 and arm64.
efify - UEFI for a couple of boards (mips and arm). suspended due to lost of all the target park boards (russians destroyed our town).


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Apr 19, 2017 1:36 am 
Offline
Member
Member
User avatar

Joined: Fri Apr 03, 2015 9:41 am
Posts: 492
Finally! Now include files for U365 apps are in the FS itself.


Attachments:
Screenshot_20170419_103435.png
Screenshot_20170419_103435.png [ 17.03 KiB | Viewed 4293 times ]

_________________
Developing U365.
Source:
only testing: http://gitlab.com/bps-projs/U365/tree/testing

OSDev newbies can copy any code from my repositories, just leave a notice that this code was written by U365 development team, not by you.
Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Apr 19, 2017 3:21 am 
Offline
Member
Member

Joined: Sat Oct 16, 2010 3:38 pm
Posts: 587
osdeverr wrote:
Finally! Now include files for U365 apps are in the FS itself.


FYI, "cat" should run without arguments, if you are implementing POSIX. It should cat from stdin in that case, not throw an error and exit.


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Apr 19, 2017 3:45 am 
Offline
Member
Member
User avatar

Joined: Fri Aug 07, 2015 6:13 am
Posts: 1134
osdeverr wrote:
Finally! Now include files for U365 apps are in the FS itself.


That is really cool! Now add some color. :D (for syntax highlighting)

_________________
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Apr 19, 2017 10:39 am 
Offline
Member
Member
User avatar

Joined: Fri Apr 03, 2015 9:41 am
Posts: 492
mariuszp wrote:
osdeverr wrote:
Finally! Now include files for U365 apps are in the FS itself.


FYI, "cat" should run without arguments, if you are implementing POSIX. It should cat from stdin in that case, not throw an error and exit.

I know, I was just lazy :P

_________________
Developing U365.
Source:
only testing: http://gitlab.com/bps-projs/U365/tree/testing

OSDev newbies can copy any code from my repositories, just leave a notice that this code was written by U365 development team, not by you.


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Apr 19, 2017 10:50 am 
Offline
Member
Member
User avatar

Joined: Fri Apr 03, 2015 9:41 am
Posts: 492
octacone wrote:
osdeverr wrote:
Finally! Now include files for U365 apps are in the FS itself.


That is really cool! Now add some color. :D (for syntax highlighting)

But it's a cat...

_________________
Developing U365.
Source:
only testing: http://gitlab.com/bps-projs/U365/tree/testing

OSDev newbies can copy any code from my repositories, just leave a notice that this code was written by U365 development team, not by you.


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Apr 19, 2017 9:32 pm 
Offline

Joined: Tue Apr 18, 2017 6:02 pm
Posts: 13
I dont really have an os yet but i created something fun in the error screen :)

Image

Yep, Snake in the error screen :D
btw its running on my old nearly broken laptop !

funfact: the error screen has more function then the os itself !


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Thu Apr 20, 2017 8:36 am 
Offline
User avatar

Joined: Thu Apr 20, 2017 7:45 am
Posts: 5
Currently, FemtOS 0.1.0-PRE looks like that:

Image

_________________
There be dragons: https://jakub.kaszycki.net.pl/en/


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3898 posts ]  Go to page Previous  1 ... 194, 195, 196, 197, 198, 199, 200 ... 260  Next

All times are UTC - 6 hours


Who is online

Users browsing this forum: Bing [Bot] and 161 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group