Page 240 of 262

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

Posted: Fri Dec 11, 2020 4:01 pm
by eekee
@Gigasoft: Coool! ;) Do you have a binary download?

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

Posted: Sat Dec 12, 2020 8:02 pm
by Gigasoft
Here you go.

This has not been tested on a real computer. If the OS doesn't start, you can try holding down Shift at the start to enter the debugger. If you hold Ctrl at the start, debug messages will be sent to COM1. You can break into the debugger at any time by pressing Break. Press F11 to single step, F10 to step over a function call and Esc to continue.

Users haven't been implemented yet, so the login fields are ignored.

Menu commands:
- Run: Load and start a program (GXE file). DOS programs can also be run, and will have drive letters mapped consecutively to detected volumes.
- Initialize hard disk: Create a MBR partition table on a hard disk containing a single partition filling the entire drive (Needs restart)
- Initialize FAT volume: Format a hard disk partition or floppy (Needs restart)
- Set debug port: Choose from COM1, Bochs, QEMU or none.
- Clock: Display an analog clock
- Calculator: Display a calculator
- Notepad: Start Notepad.gxe
- Paint: Polygon drawing test. Keys: N=New subpolygon, B=Quad bezier, C=Cubic bezier, L=Line, F=Fill, D=Stroke, Esc=Cancel, LMB=Add point, RMB=Stroke and fill
- Font viewer: Open TTF files and display text at various sizes. Press A/Z to change size. Press S/X to zoom in after grid fitting. Press F/V to zoom in after flattening. Press D, C or P to output a long stream of useless information to the debug port for every character (system wide setting). Press T to change the displayed text.
- Network test: Tries to download a web page and displays it in Notepad.
- Shut down / Restart: Turns off or restarts the computer immediately without syncing file systems
- Switch user: Go back to the login screen

The only supported hardware at the moment is PS/2 keyboard and mouse, PATA controllers, Floppy Disk Controller, RTL8029 network card, VGA compatible display.

Trying to cut, copy or paste inside Notepad doesn't work and will crash.

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

Posted: Sun Dec 13, 2020 1:41 pm
by eekee
Gigasoft wrote:Here you go.
Thanks very much! Unfortunately, all I can say is "It doesn't work in Qemu." Qemu starts booting before opening its window so there's no chance to hold shift or control. I don't have Vbox. Maybe I should install it because Qemu is a pain in this and other ways. Bochs "Could not read the boot disk" of this and every other OS, which is very strange.

EDIT: It prints a couple of lines of text in Qemu. I only tried vga options 'std' (full vesa support? i don't remember,) and cirrus.

Code: Select all

Booting from Floppy
Starting UstaOSet
Gigasoft wrote:This has not been tested on a real computer. If the OS doesn't start, you can try holding down Shift at the start to enter the debugger. If you hold Ctrl at the start, debug messages will be sent to COM1. You can break into the debugger at any time by pressing Break. Press F11 to single step, F10 to step over a function call and Esc to continue.

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

Posted: Mon Dec 14, 2020 11:31 am
by Gigasoft
I have updated the zip file with a new floppy image which should have a higher chance of booting. It will enter the debugger automatically at the start. You can enable serial port logging by typing "log". To log ACPI related issues, type "acpit 7f". It now seems to work most of the time in Parallels Desktop.

As for Bochs, maybe something is wrong with your bochsrc.bxrc file? This is what the relevant portion in mine looks like:

boot: floppy
floppya: type=1_44, 1_44="image file path", status=inserted, write_protected=0

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

Posted: Tue Dec 15, 2020 1:25 am
by astralorchid
disk driver update. boots with bios on 100% of rigs so far. tokenizer (will also be used for my shell scripts.) getting deeper into a 16-bit assembler syntax tree. the base opcodes are established, now constructing mod r/m bytes and immediates. error detection. real man. beware mr klik. CLI assembly first, then a text editor and actual file system after.

Image

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

Posted: Thu Dec 17, 2020 5:16 pm
by eekee
@Gigasoft: Thanks! I will test it and PM you, but I'm too tired to do it justice at present. (Or to do much of anything else.)
astralorchid wrote:disk driver update. boots with bios on 100% of rigs so far. tokenizer (will also be used for my shell scripts.) getting deeper into a 16-bit assembler syntax tree. the base opcodes are established, now constructing mod r/m bytes and immediates. error detection. real man. beware mr klik. CLI assembly first, then a text editor and actual file system after.
Awesome! :mrgreen:

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

Posted: Sat Dec 19, 2020 10:30 pm
by Peterbjornx
Started working on a debugger interface based around my procfs
Image

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

Posted: Sun Dec 20, 2020 11:17 pm
by Peterbjornx
GCC 9.3.0 running on my OS!
Image

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

Posted: Mon Dec 21, 2020 1:52 am
by eekee
Peterbjornx wrote:GCC 9.3.0 running on my OS!
Congrats! :D It's nice to see a short list of processes too. I miss the days when Linux was like that. Even Plan 9 has tons of processes in a bare system.

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

Posted: Mon Dec 21, 2020 2:51 am
by nullplan
eekee wrote:Congrats! :D It's nice to see a short list of processes too. I miss the days when Linux was like that. Even Plan 9 has tons of processes in a bare system.
The system I'm planning will have tons of processes after boot as well. That is not a measure of bloat. I will be using the same threaded interrupt handler model Linux uses because I have experienced a Linux system in an interrupt storm, and besides a little silliness regarding the timer, you wouldn't even know. (The system was in an interrupt storm because an interrupt trigger was set wrong, so it was constantly interrupting.) And I don't feel like hiding kernel threads from user space, because I don't want to write the scheduler twice.

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

Posted: Mon Dec 21, 2020 4:55 am
by nlg
I don't remember having presented my OS to you, so here is a screen of my OS:
Image
(the text is in French but it's normal I'm French)

if you want to try it:
- a floppy image https://github.com/N-LG/SEAC/raw/master ... QUETTE.IMG
- a multiboot1 file https://github.com/N-LG/SEAC/raw/master ... AC_BAZ.IMB

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

Posted: Mon Dec 21, 2020 7:06 am
by nexos
Peterbjornx wrote:GCC 9.3.0 running on my OS!
Quite nice! I'll be glad when my OS does that one day....
@nlg: That look great, too! Networking support is a big feat!

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

Posted: Mon Dec 21, 2020 6:49 pm
by klange
nlg wrote:I don't remember having presented my OS to you, so here is a screen of my OS:
-snip-
(the text is in French but it's normal I'm French)

if you want to try it:
- a floppy image https://github.com/N-LG/SEAC/raw/master ... QUETTE.IMG
- a multiboot1 file https://github.com/N-LG/SEAC/raw/master ... AC_BAZ.IMB
Quite impressive, especially when it's all assembly!

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

Posted: Tue Dec 22, 2020 6:09 am
by nlg
@klange @nexos thank you!

I forgot to specify for the possible testers, If you want to have international US keyboard, enter the command "def en-azi.def" (it should write "def en-qwi.def") otherwise there will be key inversions because the default keyboard is the French keyboard

in the same way enter the command "def en-txt.def" to have the system messages in English (translated by me, sorry in advance) the messages of the applications will remain in French because for the moment I have not integrated a multi-lingual management system in the applications

mkfreeOS

Posted: Tue Dec 22, 2020 2:33 pm
by mkfree
Much to do ...