Nice! I'm very jealous of you.Artlav wrote:Working on the network stack...
Never expected that i would be so excited by a simple ping!
What does your OS look like? (Screen Shots..)
- zesterer
- Member
- Posts: 59
- Joined: Mon Feb 22, 2016 4:40 am
- Libera.chat IRC: zesterer
- Location: United Kingdom
- Contact:
Re: What does your OS look like? (Screen Shots..)
Current developing Tupai, a monolithic x86 operating system
http://zesterer.homenet.org/projects.shtml
http://zesterer.homenet.org/projects.shtml
-
- Member
- Posts: 80
- Joined: Wed Aug 09, 2017 7:37 am
Re: What does your OS look like? (Screen Shots..)
That's my OS printing a string without interrupts (0xb800). Amazing, huh? Not the greatest in history though. I still like the look of all the other very good projects!
Re: What does your OS look like? (Screen Shots..)
yup. you are definitely ready to making endless questions on x86 chipset guts.
- BrightLight
- Member
- Posts: 901
- Joined: Sat Dec 27, 2014 9:11 am
- Location: Maadi, Cairo, Egypt
- Contact:
Re: What does your OS look like? (Screen Shots..)
I know that feeling. Nice work.Artlav wrote:Working on the network stack...
Never expected that i would be so excited by a simple ping!
You know your OS is advanced when you stop using the Intel programming guide as a reference.
Re: What does your OS look like? (Screen Shots..)
This special screenshot requires me to post a link to an external site:
https://twitter.com/ToAruOS/status/897095724667617281
https://twitter.com/ToAruOS/status/897095724667617281
-
- Member
- Posts: 80
- Joined: Wed Aug 09, 2017 7:37 am
Re: What does your OS look like? (Screen Shots..)
Wow, that's impressible. Did you port Python? If you did, then it's just wonderful.klange wrote:This special screenshot requires me to post a link to an external site:
https://twitter.com/ToAruOS/status/897095724667617281
Re: What does your OS look like? (Screen Shots..)
I can finally reply to you, some serious work has been done.Octocontrabass wrote: "Something about extending functions to 64 bit"
There are still some functions I have to implement.
This is a screenshot of around 8 separate hexadecimal functions, printing 8, 16, 32 bit integers, both signed and unsigned. Still lots of bugs to fix.
Around ~1100 lines of code, an entirely new VGA driver btw)
4 different output types supported.
Writing a 1000+ lines of code VGA drivers while other are pinging this site from their own OSes.
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
Re: What does your OS look like? (Screen Shots..)
I had a rudimentary port of Python 2.7 a few years ago, and worked on porting Python 3.6 while it was in RC back in December/January. I've been using Python as the primary userspace language for building graphical applications in my OS since then. In this example, a Python script generated an OAuth-signed API request to send to the Twitter API server via a TLS tunneling tool built from mbed TLS.stevewoods1986 wrote:Wow, that's impressible. Did you port Python? If you did, then it's just wonderful.
Re: What does your OS look like? (Screen Shots..)
Neat.klange wrote:This special screenshot requires me to post a link to an external site:
https://twitter.com/ToAruOS/status/897095724667617281
And now i have a nice goal to work towards...
- lkurusa
- Member
- Posts: 42
- Joined: Wed Aug 08, 2012 6:39 am
- Libera.chat IRC: Levex
- Location: New York, NY
- Contact:
Re: What does your OS look like? (Screen Shots..)
I've got a basic UDP chat application working
http://i.imgur.com/LGDxvVh.gif
To be frank, I've had a working UDP implementation for a while now, but it was all wonky and used SOCK_STREAM semantics. No longer!
http://i.imgur.com/LGDxvVh.gif
To be frank, I've had a working UDP implementation for a while now, but it was all wonky and used SOCK_STREAM semantics. No longer!
Cheers,
Lev
Lev
Re: What does your OS look like? (Screen Shots..)
sneaky snake
Operating system for SUBLEQ cpu architecture:
http://users.atw.hu/gerigeri/DawnOS/download.html
http://users.atw.hu/gerigeri/DawnOS/download.html
Re: What does your OS look like? (Screen Shots..)
well done geri chan! ^_^Geri wrote:
sneaky snake
Re: What does your OS look like? (Screen Shots..)
sugoi kawaii hebi desugungomanj wrote: well done geri chan! ^_^
Operating system for SUBLEQ cpu architecture:
http://users.atw.hu/gerigeri/DawnOS/download.html
http://users.atw.hu/gerigeri/DawnOS/download.html
Re: What does your OS look like? (Screen Shots..)
klange, that is awesome!
Have you considered a script for posting screenshots in this thread?
Have you considered a script for posting screenshots in this thread?
That's amazing, cool with a gif!lev wrote:I've got a basic UDP chat application working
http://i.imgur.com/LGDxvVh.gif
To be frank, I've had a working UDP implementation for a while now, but it was all wonky and used SOCK_STREAM semantics. No longer!
-
- Member
- Posts: 43
- Joined: Sun Aug 20, 2017 10:59 am
Re: What does your OS look like? (Screen Shots..)
I started my os kernel a month ago, and i am finally able to read from a FAT32 file system !
I know that this isnt much, but i needed to do all the basic functions (like paging, heap, ...) before !
(for now the fat32 access and read are hardcoded, i will need to work on a VFS implementation and then on system calls to interact with it)
I know that this isnt much, but i needed to do all the basic functions (like paging, heap, ...) before !
(for now the fat32 access and read are hardcoded, i will need to work on a VFS implementation and then on system calls to interact with it)