Kernel developer here - nice work! You should dip your toes into ELF/PE loading, maybe usernode
@JoshuaF.5 ай бұрын
uh, im not using COSMOS.
@JoshuaF.5 ай бұрын
asm is nice, (old COSA source) but i seem to just stare at my 800+ lines of code just like: *yep*
@sasdallas7655 ай бұрын
@@JoshuaF. My apologies! I assumed it was COSMOS from the visual studio editor - I looked closer haha
@JoshuaF.5 ай бұрын
@@sasdallas765 lol
@sasdallas7655 ай бұрын
@@JoshuaF. ASM is pain, hate writing it lmao It's good for like bare metal stuff (who wants to write 16-bit C?) but a pain for everything else - I find switching between C and assembly is such a pain, and inline assembly just makes it messier imo lol
@MrMMVPP6 ай бұрын
🗣🔥🔥🔥
@xfaon6 ай бұрын
im making an OS too. But custom cpu and all and arch
@JodyBruchon6 ай бұрын
A tip for future videos: boost the font size significantly (for terminals) OR drop your capture area and OBS canvas size to fit the window (for emulators). I'm looking at this on my phone and I can't really read it. If you published at 1280x720 then it would work a lot better on mobile.
@JoshuaF.6 ай бұрын
Yeah, on mobile ATM, and see the issue, In future I'll just use full screen mode.
@player277-ml3ts5 ай бұрын
HUH? adwaita on windows? (i use adwaita dark) *ladies and gentlemen, i think my brain has commited stupid*
@niko.records4 ай бұрын
ikr
@lowlevelcodingch6 ай бұрын
Cool!
@rottenpotatoexe6 ай бұрын
This is so COOL!! Hey do you plan to make a tutorial on this? if not can u suggest some tutorials where we can learn OSdev? also do u have a discord server?
@JoshuaF.6 ай бұрын
yes I do have a discord server And do plan on a simple tutorial series in the future. discord.com/invite/tKuk2u3m
@YourMom-rg5jk6 ай бұрын
osdev wiki is the best resource hands down
@Xayles_5 ай бұрын
hey if u complete it i will install it
@lowlevelcodingch6 ай бұрын
Also making one lol.
@SolaireDane5 ай бұрын
Wonder how difficult its gonna be to download steam
@JoshuaF.5 ай бұрын
IN ALL SERIOUSNESS it depends on how i design the shell, IF steam were to be ported it would probably be something like do -install steam / super-do -install steam or 80 different commands to setup the system for steam (more likely)
@JustDoom6 ай бұрын
ive been trying to make my own OS recently. I can't get C++ working :(
@JoshuaF.6 ай бұрын
Just trying to get the compiler working for the first time can be a pain, what compiler are you using?
@JustDoom6 ай бұрын
@@JoshuaF. I was using GCC and tried to setup CMake
@lowlevelcodingch6 ай бұрын
@@JustDoom ....... Use i386-elf-gcc
@sasdallas7655 ай бұрын
@@JustDoom cmake with OSes is a serious pain imo, I just use a Makefile configured with find commands to get all my C sources What compiler flags are you using? That might be the problem
@JustDoom5 ай бұрын
@@sasdallas765 Ive changed my cmake file so many times. im not even sure anymore. I havent used cmake too much but i know some basics. I think this is my latest attempt "-m64 -ffreestanding -nostdlib" for c and c++