The MASM Forum

General => The Workshop => Topic started by: Justsomeguy on March 03, 2018, 01:22:48 AM

Title: Where to begin in Kernel development
Post by: Justsomeguy on March 03, 2018, 01:22:48 AM
Hi, I'm currently in the process of wanting to write my own mini Kernel, for what I'm planning to be a os that I've dream of writing since I was a kid.
I was just wondering, where does one begin?
I've seemed to hit a brick wall.
Plus, this is my first post since I've signed up. So, nice to me you all.
Title: Re: Where to begin in Kernel development
Post by: aw27 on March 03, 2018, 01:41:44 AM
One thing I am sure, you will never be able to make your own mini-kernel in MASM, eventually with others like NASM or FASM you could, may be UASM as well.

Quote
I was just wondering, where does one begin?
I would begin with Google.
Title: Re: Where to begin in Kernel development
Post by: FORTRANS on March 03, 2018, 02:15:40 AM
Hi,

  Welcome to the forum.

  Have you looked at;

https://wiki.osdev.org/ (https://wiki.osdev.org/) ?

  Not using MASM is probably more a legal issue (you are only
supposed to use it for Microsoft operating systems) than any
lack of capability.

Cheers,

Steve N.
Title: Re: Where to begin in Kernel development
Post by: aw27 on March 03, 2018, 02:22:43 AM
Quote
Not using MASM is probably more a legal issue (you are only
supposed to use it for Microsoft operating systems) than any
lack of capability.
There is also a legal issue? I never though about that.
Let me know how do you boot your MASM developed kernel?
Title: Re: Where to begin in Kernel development
Post by: Justsomeguy on March 03, 2018, 02:42:55 AM
So what version of assembly should I use?
Title: Re: Where to begin in Kernel development
Post by: aw27 on March 03, 2018, 02:53:25 AM
Quote from: Justsomeguy on March 03, 2018, 02:42:55 AM
So what version of assembly should I use?
I hinted about that but I believe Google will provide you a very comprehensive list of alternatives with pros and cons.  :idea:
Title: Re: Where to begin in Kernel development
Post by: jj2007 on March 03, 2018, 05:35:18 AM
Unless José alias aw27 comes out with some revolutionary and plausible explanation why Masm (or, better, its UAsm clone) cannot produce the same identical code as FASM, NASM & friends, you can safely assume that yes indeed, you can use Masm to write your Kernel.
Title: Re: Where to begin in Kernel development
Post by: Vortex on March 03, 2018, 05:55:53 AM
Quote from: aw27 on March 03, 2018, 02:22:43 AM
There is also a legal issue? I never though about that.
Let me know how do you boot your MASM developed kernel?

You can use Qemu to boot a kernel, it should be good for testing purposes.
Title: Re: Where to begin in Kernel development
Post by: FORTRANS on March 03, 2018, 06:05:56 AM
Hi,

Quote from: aw27 on March 03, 2018, 02:22:43 AMLet me know how do you boot your MASM developed kernel?

  Dave, Zak, and I worked on a boot loader on the old forum.
That might be of interest to our poster as well.
Well, maybe not so much, I didn't get too far with it.

Cheers,

Steve N.
Title: Re: Where to begin in Kernel development
Post by: aw27 on March 03, 2018, 06:35:57 AM
Quote from: jj2007 on March 03, 2018, 05:35:18 AM
Unless José alias aw27 comes out with some revolutionary and plausible explanation why Masm (or, better, its UAsm clone) cannot produce the same identical code as FASM, NASM & friends, you can safely assume that yes indeed, you can use Masm to write your Kernel.

You have no idea at all about many things, JJ, unfortunately.
The reason UASM can be used is that UASM allows to assemble in raw binary format. MASM does not, so MASM depends in all the apparatus that a kernell will make available in the first place and will not be available at the time. These matters have been discussed over and over I don't know how people forget them.
Title: Re: Where to begin in Kernel development
Post by: jj2007 on March 03, 2018, 07:01:37 AM
Quote from: aw27 on March 03, 2018, 06:35:57 AMYou have no idea at all about many things, JJ, unfortunately.
Yes, that's true :greensml:

QuoteThe reason UASM can be used is that UASM allows to assemble in raw binary format. MASM does not, so MASM depends inon all the apparatus that a kernell will make available in the first place and will not be available at the time.
Interesting. I wonder how difficult it would be to translate the "normal" format into raw binary. If I had a lot of spare time, I would look into it 8)
Title: Re: Where to begin in Kernel development
Post by: aw27 on March 03, 2018, 07:19:29 AM
Quote from: jj2007 on March 03, 2018, 07:01:37 AM
Interesting. I wonder how difficult it would be to translate the "normal" format into raw binary. If I had a lot of spare time, I would look into it 8)
Nothing that your Magic Basic can't do, my friend.  :lol:
Title: Re: Where to begin in Kernel development
Post by: HSE on March 03, 2018, 08:21:08 AM
You can't use MASM for OS development because don't have a couple of especific opcodes. But you can use the others assemblers with full set of opcodes. I think there is an explanation in SolAsm section.
Title: Re: Where to begin in Kernel development
Post by: jj2007 on March 03, 2018, 09:40:18 AM
Quote from: HSE on March 03, 2018, 08:21:08 AMYou can't use MASM for OS development because don't have a couple of especific opcodes.

The "M" in Masm stands for "macro". If you don't know how to write such macros, there is always db 12h, 34h etc.
Title: Re: Where to begin in Kernel development
Post by: HSE on March 03, 2018, 10:47:17 AM
 :t
Title: Re: Where to begin in Kernel development
Post by: felipe on March 03, 2018, 12:35:01 PM
 :idea: I think you can try also to use the old masm and link (from dos era). The linker can produce .bin files from masm (masm 5.0). Maybe start with real mode and then...Probably you should use for your kernel other assembler... :P