What does your OS look like? (Screen Shots..)
My _new_ boot screen
Did a bit of messing with the boot screen this morning, and got this. Any how, off to school
Re: What does your OS look like? (Screen Shots..)
Oh, yes. gitlab.com/bps-projs/U365/tree/testing. My website is downquxuan wrote:why i can not open your website? I want see your source code, have you put your code on github?catnikita255 wrote:U365 on Bochs. See that cool text in the bottom
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.
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.
Re: What does your OS look like? (Screen Shots..)
Here's mine so far.
-
- Member
- Posts: 58
- Joined: Sat Aug 01, 2015 9:05 pm
Re: What does your OS look like? (Screen Shots..)
I'll hand it to you, you can make elementary OS work, and that earns my respect. I couldn't get it to do well for the life of me.ablakely wrote: Here's mine so far.
"That I'm in forum signatures is just a sign the invasion of sortie is nearing completion. Soon you'll all have to become me to defeat me." ~ Sortie
Re: What does your OS look like? (Screen Shots..)
I like it so far, been using it for about two years on my second computer. When my Macbook gave out, it became my main OS. But linux isn't anything new to me, been using it for going on 8 years now.cheapskate01 wrote: I'll hand it to you, you can make elementary OS work, and that earns my respect. I couldn't get it to do well for the life of me.
Re: What does your OS look like? (Screen Shots..)
U365 is now on real hardware!
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.
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.
Re: What does your OS look like? (Screen Shots..)
And on my development PC too,
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.
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.
Re: What does your OS look like? (Screen Shots..)
The current state of ttOS!
And showing off my directory listing code:
P.S. Yes there is a memory leak My blog: http://www.rivencove.com/
- max
- Member
- Posts: 616
- Joined: Mon Mar 05, 2012 11:23 am
- Libera.chat IRC: maxdev
- Location: Germany
- Contact:
Re: What does your OS look like? (Screen Shots..)
Made the mounted ramdisk filesystem writable, cross-compiled NASM and made it assemble some stuff
-
- Member
- Posts: 501
- Joined: Wed Jun 17, 2015 9:40 am
- Libera.chat IRC: glauxosdever
- Location: Athens, Greece
Re: What does your OS look like? (Screen Shots..)
Hi,
Regards,
glauxosdever
I'm wondering, don't you have stdio redirection? Like this:max wrote:Made the mounted ramdisk filesystem writable, cross-compiled NASM and made it assemble some stuff
Code: Select all
echo "mov eax, 1337" > test.asm
echo "mov ebx, eax" >> test.asm
Regards,
glauxosdever
- max
- Member
- Posts: 616
- Joined: Mon Mar 05, 2012 11:23 am
- Libera.chat IRC: maxdev
- Location: Germany
- Contact:
Re: What does your OS look like? (Screen Shots..)
glauxosdever wrote:I'm wondering, don't you have stdio redirection? Like this:Code: Select all
echo "mov eax, 1337" > test.asm echo "mov ebx, eax" >> test.asm[/quote] Hi glauxosdever, I have not implemented it in the terminal as I have pipes and did not see the need yet. The "read" and "write" commands do basically the same that the redirect operator would do for files. :P Greest, Max
Re: What does your OS look like? (Screen Shots..)
Very cool OS!max wrote:Made the mounted ramdisk filesystem writable, cross-compiled NASM and made it assemble some stuff
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.
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.
Re: What does your OS look like? (Screen Shots..)
Hey, so I have been working on my os for a short time, there is very little to see. However, I have implemented basic commands, and I am working on a hex editor. File system coming soon, but for now, this is what it looks like:
Whew. I sure do hope it turns out well.
Whew. I sure do hope it turns out well.
Re: What does your OS look like? (Screen Shots..)
Nice GUI, but i think you made it very strange. You shrinked the terminal so much. And, i think is best to make GUIs graphical. Take a look at Windows 95;.grsan wrote:Hey, so I have been working on my os for a short time, there is very little to see. However, I have implemented basic commands, and I am working on a hex editor. File system coming soon, but for now, this is what it looks like:
Whew. I sure do hope it turns out well.
Now just imagine how bad it could look in text 80x25 mode. I think that your next step to your OS is VGA or simplest graphics driver. Cool work, for now . If you wish to continue with hex editor and FAT, there is one tip:don't make TUI shells.
- max
- Member
- Posts: 616
- Joined: Mon Mar 05, 2012 11:23 am
- Libera.chat IRC: maxdev
- Location: Germany
- Contact:
Re: What does your OS look like? (Screen Shots..)
Thank you friend!catnikita255 wrote:Very cool OS!max wrote:Made the mounted ramdisk filesystem writable, cross-compiled NASM and made it assemble some stuff