Page 1 of 1

2 issues

Posted: Wed Aug 12, 2015 7:25 pm
by molekel
the boot-up code and the build process should be more simple.

why do you keep kolibrios from building their own kolibri by using a complex auto-build where you should be using a
simple batch file.

fasm builds these things fine. What's the use of making it complicated than it already is.

tatos does it this way

fasm boot.s
fasm kernel.s

;build.s
incbin "boot"
incbin "kernel"
times 1474560 - ($-$$) db 0x0
;eof

fasm build.s

and I like that because of simplicity .. (you must set the size of the individual files by another times directive but you need 0x55aa anyway)

Re: 2 issues

Posted: Wed Aug 12, 2015 7:46 pm
by CleverMouse
fasm builds these things fine
Really? fasm can build a C++ program?