So I was having fun with MikeOS but I suck at Assembly. So I wrote a program in C, and convert it to Assembly with GCC(IN Ubuntu). But when I convert it, it ends up as a .s file. So how do I convert this to .asm? The command I used to make the .s file is;
gcc -S test.c
So another way to do this is, how do I convert .s to .bin? That might help as well.
Thanks!