


Gitrepo is here https://github.com/Vik2015/weevil/.
P. S. I hope my scrolling function is ok?
http://bestsoft.azurewebsites.net/ wrote: With Bestsoft Space you can write operating system eaven if it your first software.
http://bestsoft.azurewebsites.net/ wrote: With Bestsoft Space you can write operating system eaven if it your first software.
You should place arch-dependent source files into arch/${ARCH}, arch-independent in the root of src.Vik2015 wrote:Ok, thanks guys. Repo updated
Uhh, not sure what do you mean. Something like this?Roman wrote:You should place arch-dependent source files into arch/${ARCH}, arch-independent in the root of src.Vik2015 wrote:Ok, thanks guys. Repo updated
Code: Select all
/ #These files are platform-independent. Makefile can be run as `make i686' && `make ...' && ...
Makefile
grub.cfg
# Not sure about those two - they may be platform dependent
boot.asm
linker.ld
i686/
src/
kernel.c
...
.../
src/
...
http://bestsoft.azurewebsites.net/ wrote: With Bestsoft Space you can write operating system eaven if it your first software.
Topicstarter wants smth like MS-DOS, due to this fact I think that portability and expandable architecture aren't planned at all.Roman wrote:You should place arch-dependent source files into arch/${ARCH}, arch-independent in the root of src.
Vik2015 wrote:Uhh, not sure what do you mean. Something like this?Roman wrote:You should place arch-dependent source files into arch/${ARCH}, arch-independent in the root of src.Vik2015 wrote:Ok, thanks guys. Repo updatedCode: Select all
/ #These files are platform-independent. Makefile can be run as `make i686' && `make ...' && ... Makefile grub.cfg # Not sure about those two - they may be platform dependent boot.asm linker.ld i686/ src/ kernel.c ... .../ src/ ...
Code: Select all
Makefile
grub.cfg
linker.ld # Can be dependent.
arch/
/x86
/...
main.c
His OS is already unlike DOS: written in C, 32-bit and protected.Nable wrote:Topicstarter wants smth like MS-DOS, due to this fact I think that portability and expandable architecture aren't planned at all.Roman wrote:You should place arch-dependent source files into arch/${ARCH}, arch-independent in the root of src.
Of course, I should mention this starting point: http://wiki.osdev.org/Beginner_Mistakes .
And one more: http://wiki.osdev.org/Getting_Started .
So it will be a 16-bit DOS-like OS? It's quite odd you're using GRUB for that though.Vik2015 wrote:[...] I want it to be like MS-DOS
Well, I didn't want to create my own bootloader (thought I know how - using BIOS calls to read/load sectors, etc.). I am also gonna *try* to write it using only real mode (64kb memory should be enough I guess?) but without using any BIOS calls (or just minimal amount of them).omarrx024 wrote:So it will be a 16-bit DOS-like OS? It's quite odd you're using GRUB for that though.Vik2015 wrote:[...] I want it to be like MS-DOS
http://bestsoft.azurewebsites.net/ wrote: With Bestsoft Space you can write operating system eaven if it your first software.
You should see this page. It explains on how to switch between 32-bit and 16-bit mode, so you can use BIOS interrupts for disk access. It's also good because your system probably won't be multitasking, seeing it's DOS-like. If you don't want to do this, see Virtual 8086 Mode, which allows you to execute 16-bit code in a 32-bit environment.Vik2015 wrote:Well, I didn't want to create my own bootloader (thought I know how - using BIOS calls to read/load sectors, etc.). I am also gonna *try* to write it using only real mode (64kb memory should be enough I guess?) but without using any BIOS calls (or just minimal amount of them).
Because he wants a DOS-like OS, which probably means it would be 16-bit.iansjack wrote:Rather than all the kludging with 16-bit and/or Virtual 8086 mode, why not just write a proper disk driver?
A single driver is not enough for IDE hard disk, SATA, USB, floppy etc. But a one BIOS interrupt can do that.iansjack wrote:Rather than all the kludging with 16-bit and/or Virtual 8086 mode, why not just write a proper disk driver?