Works for me too.omarrx024 wrote:It's showing, I just clicked on it now.alexfru wrote:(btw, the image isn't showing; ...)
What does your OS look like? (Screen Shots..)
Re: What does your OS look like? (Screen Shots..)
"If you don't fail at least 90 percent of the time, you're not aiming high enough."
- Alan Kay
- Alan Kay
Re: What does your OS look like? (Screen Shots..)
Here's an imgur mirror of the image if it's still not working for you.alexfru wrote:(btw, the image isn't showing; perhaps, the view limit has been reached)
Re: What does your OS look like? (Screen Shots..)
Smaller screens?
My netbook has a native resolution of 1024x600, and with some help from a special Grub module I had forgotten about (915resolution, video bios patching tool for this old chipset), I managed to get it running:
Plays DooM and Quake just fine. I also have some other hardware I'm setting up for testing.
My netbook has a native resolution of 1024x600, and with some help from a special Grub module I had forgotten about (915resolution, video bios patching tool for this old chipset), I managed to get it running:
Plays DooM and Quake just fine. I also have some other hardware I'm setting up for testing.
Re: What does your OS look like? (Screen Shots..)
Thanks. The fault was with AdBlocker+.seuti wrote:Here's an imgur mirror of the image if it's still not working for you.alexfru wrote:(btw, the image isn't showing; perhaps, the view limit has been reached)
Re: What does your OS look like? (Screen Shots..)
I've written a 2048 game clone for my OS:
Last edited by Muazzam on Wed Jun 10, 2015 1:27 am, edited 1 time in total.
- CorruptedByCPU
- Member
- Posts: 79
- Joined: Tue Feb 11, 2014 4:59 pm
Re: What does your OS look like? (Screen Shots..)
Now my text editor works fine with file save too
I named it: Moko
Download latest (alfa) version 0.392: http://wataha.net/system/hda.img.zip, run with Bochs!
Login is obsolete (password too, still working with that).
At last i can create documentation within system
I named it: Moko
Download latest (alfa) version 0.392: http://wataha.net/system/hda.img.zip, run with Bochs!
Login is obsolete (password too, still working with that).
At last i can create documentation within system
Last edited by CorruptedByCPU on Mon Jun 22, 2015 10:24 am, edited 1 time in total.
https://blackdev.org/ - system programming, my own 64 bit kernel and software.
-
- Posts: 4
- Joined: Sat Jun 13, 2015 3:28 pm
Re: What does your OS look like? (Screen Shots..)
https://www.dropbox.com/s/xdcw42ni4v9vqc3/kernel.png
Started today, and I have no idea to implement something because I'm Java developer and I simply can't think logical while developing (in real life it works fine, don't ask why xd)
Started today, and I have no idea to implement something because I'm Java developer and I simply can't think logical while developing (in real life it works fine, don't ask why xd)
Re: What does your OS look like? (Screen Shots..)
Hello guys,
After finally reaching a somewhat presentable state, I'd like to share my humble approach to os-deving
The source code lives on https://bitbucket.org/qx89l4/os64/ and https://bitbucket.org/qx89l4/nf/
Cheers,
Luke
After finally reaching a somewhat presentable state, I'd like to share my humble approach to os-deving
The source code lives on https://bitbucket.org/qx89l4/os64/ and https://bitbucket.org/qx89l4/nf/
Cheers,
Luke
- 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..)
luke64: I'd say your system is pretty good-looking.
You know your OS is advanced when you stop using the Intel programming guide as a reference.
- 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..)
Working on graphics. I wrote some alpha blending code, but it's unoptimized and is very slow in Bochs, but gives reasonable speed in QEMU and pretty fast on real hardware.
I wish I could say that this is my GUI, but it's actually just a bunch of draw_rect's and print_string's in a 800x600x32bpp VESA mode to test alpha blending. It is also a prototype of what my GUI will look like when I make it.
I wish I could say that this is my GUI, but it's actually just a bunch of draw_rect's and print_string's in a 800x600x32bpp VESA mode to test alpha blending. It is also a prototype of what my GUI will look like when I make it.
Last edited by BrightLight on Tue Jun 23, 2015 1:11 am, edited 1 time in total.
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..)
Not nearly as far as some other people, but here's my 64-bit OS, Delta:
It's loaded by Pure64 (yeah, the same bootloader that BareMetal OS has), so I'm anticipating a lot of differences (or maybe not that many, but at least some significant ones) from writing kernels loaded by Grub, especially with modules and such.
I've just finished implementing text in VESA mode; in case anyone's curious, the font used is VCR OSD Mono.
It's loaded by Pure64 (yeah, the same bootloader that BareMetal OS has), so I'm anticipating a lot of differences (or maybe not that many, but at least some significant ones) from writing kernels loaded by Grub, especially with modules and such.
I've just finished implementing text in VESA mode; in case anyone's curious, the font used is VCR OSD Mono.
- 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..)
Does that mean you have TTF support?nsandman09 wrote:I've just finished implementing text in VESA mode; in case anyone's curious, the font used is VCR OSD Mono.
You know your OS is advanced when you stop using the Intel programming guide as a reference.
- 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..)
How are you printing this font, then?nsandman09 wrote:Unfortunately, no. Just bitmap.
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..)
From what I understand, it was a bitmap font that was converted to a TTF (I found it by looking for bitmap fonts, at least). I used a modified version of a script that converted regular bitmap fonts to C headers (mostly following instructions from this page). The tools I used specifically (and the output) are here.omarrx024 wrote:How are you printing this font, then?