Page 187 of 263
Re: What does your OS look like? (Screen Shots..)
Posted: Fri Jan 20, 2017 5:09 pm
by phredreeck
Wow. I think ToaruOS is, with Visopsys and Solar_OS, one of the best hobby OSes I have seen.
@sortie: I like the look'n'feel of your windows! It reminds me some old Hydrogen OS' GUI prototypes!

Re: What does your OS look like? (Screen Shots..)
Posted: Sat Jan 21, 2017 5:07 am
by abcdef4bfd
dseller wrote:Haven't been posting a lot lately, but oh well. Here's the current state of ttOS, now with graphics mode

.
snapshot.png
I love that interface.
Re: What does your OS look like? (Screen Shots..)
Posted: Sat Jan 21, 2017 5:09 am
by abcdef4bfd
sortie wrote:I used a couple of hours to hack up a basic terminal emulator for my gui prototype thing now that I have proper pseudoterminals.
It's not quite on par yet with that other hobbyist system whose desktop environment I
ported, but it's getting there.
This. Is. Awesome. Your OS is good in both graphics and internals. Your OS and ToaruOS are the BEST hobby OSes ever made.
Re: What does your OS look like? (Screen Shots..)
Posted: Sat Jan 21, 2017 8:09 am
by Agola
Just ported binutils and gcc, finally self hosting

Except arg passing is crazy buggy

Re: What does your OS look like? (Screen Shots..)
Posted: Sat Jan 21, 2017 8:32 am
by sortie
Woot!
Re: What does your OS look like? (Screen Shots..)
Posted: Sat Jan 21, 2017 8:45 am
by Agola
sortie wrote:Woot!
I couldn't get what did you mean, sorry
Also your window design and system internals are really cool, just wanted to say

Re: What does your OS look like? (Screen Shots..)
Posted: Sat Jan 21, 2017 9:04 am
by sortie
Agola wrote:sortie wrote:Woot!
I couldn't get what did you mean, sorry
I'm just making an excited sound to say that I think you did something really cool.
Agola wrote:
Also your window design and system internals are really cool, just wanted to say

[/quote]
Thanks!
Re: What does your OS look like? (Screen Shots..)
Posted: Sat Jan 21, 2017 9:06 am
by abcdef4bfd
Agola wrote:Just ported binutils and gcc, finally self hosting

Except arg passing is crazy buggy

A. W. E. S. O. M. E. Self-hosting, woohoo!

Re: What does your OS look like? (Screen Shots..)
Posted: Sat Jan 21, 2017 9:12 am
by Agola
osdeverr wrote:Agola wrote:Just ported binutils and gcc, finally self hosting

Except arg passing is crazy buggy

A. W. E. S. O. M. E. Self-hosting, woohoo!

Is it self-hosting really? Just afraid I used "wrong term" (I hope I didn't

)
GCC and Binutils works on Agola, they are both configured with --host=i686-agola --target=i686-agola, can compile code and link (except a small linker bug)
So am I self hosting really?
Re: What does your OS look like? (Screen Shots..)
Posted: Sat Jan 21, 2017 10:04 am
by abcdef4bfd
Agola wrote:osdeverr wrote:Agola wrote:Just ported binutils and gcc, finally self hosting

Except arg passing is crazy buggy

A. W. E. S. O. M. E. Self-hosting, woohoo!

Is it self-hosting really? Just afraid I used "wrong term" (I hope I didn't

)
GCC and Binutils works on Agola, they are both configured with --host=i686-agola --target=i686-agola, can compile code and link (except a small linker bug)
So am I self hosting really?
If you can compile your OS under itself then you are.
Re: What does your OS look like? (Screen Shots..)
Posted: Sat Jan 21, 2017 10:24 am
by Agola
Yay! Then I'm self hosting. Got so happy

I just compiled /test.c under my OS
Code: Select all
#include <stdio.h>
int main(int argc, char** argv)
{
printf("Simple test...\n");
printf("Argc is: %d (Should be 2)\n", argc);
printf("Argv[0] is : %s, Argv[1] is: %s, Argv[2] is: %s\n", argv[0], argv[1], argv[2]);
printf("Program will end, after calculating abs (999 - 1000) : %d", abs(999 - 1000));
return 0;
}
Re: What does your OS look like? (Screen Shots..)
Posted: Sat Jan 21, 2017 11:20 am
by crunch
Lots of inspiration in the last couple posts... I gotta get cranking on my project again. I've been porting everything over to x86_64
Re: What does your OS look like? (Screen Shots..)
Posted: Sat Jan 21, 2017 11:53 am
by abcdef4bfd
Agola wrote:Yay! Then I'm self hosting. Got so happy

I just compiled /test.c under my OS
Code: Select all
#include <stdio.h>
int main(int argc, char** argv)
{
printf("Simple test...\n");
printf("Argc is: %d (Should be 2)\n", argc);
printf("Argv[0] is : %s, Argv[1] is: %s, Argv[2] is: %s\n", argv[0], argv[1], argv[2]);
printf("Program will end, after calculating abs (999 - 1000) : %d", abs(999 - 1000));
return 0;
}
I want to wake up one day and realise that I ported GCC and Binutils last night

Re: What does your OS look like? (Screen Shots..)
Posted: Sat Jan 21, 2017 2:13 pm
by sortie
I added a lot more features to my user-space terminal emulator and show off some of my more interesting recent developments. Look closely for sneak previews of what's coming up.
Re: What does your OS look like? (Screen Shots..)
Posted: Sat Jan 21, 2017 2:17 pm
by Agola
sortie wrote:
I added a lot more features to my user-space terminal emulator and show off some of my more interesting recent developments. Look closely for sneak previews of what's coming up.
That is (Crazily Cool!)™
