www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.ldc - OS Development

reply Temur Tulenov <temurumaru yandex.com> writes:
Hello, I would like to know how to create an OS on D. For 
architectures such as x86_64(amd64), ARM, RISC-V, MIPS, etc. 
Please help me.
Jun 10 2022
next sibling parent arandomonlooker <shdkahdkhhhhhii gmail.com> writes:
On Friday, 10 June 2022 at 09:46:29 UTC, Temur Tulenov wrote:
 Hello, I would like to know how to create an OS on D. For 
 architectures such as x86_64(amd64), ARM, RISC-V, MIPS, etc. 
 Please help me.
I don't know about other architectures, but OSDev is a wealth of material about how to create OSes in any language on x86, including D. This tutorial in particular is good. https://wiki.osdev.org/D_Bare_Bones_With_LDC2 Also, take a look at projects like Xomb (the exokernel) and PowerNex, they're pretty istructive.
Jun 14 2022
prev sibling parent Satoshi <rene cincura.eu> writes:
On Friday, 10 June 2022 at 09:46:29 UTC, Temur Tulenov wrote:
 Hello, I would like to know how to create an OS on D. For 
 architectures such as x86_64(amd64), ARM, RISC-V, MIPS, etc. 
 Please help me.
Hey, I created my OS in D. You can check it there https://github.com/rikarin/trinix All of the needed resource to develop your own OS should be there https://wiki.osdev.org/Main_Page
Jul 11 2022