Where to now?
Posted: Thu Jul 07, 2011 9:12 pm
I've got a kernel running in text mode and a free-list based memory management system. What should I do next? I've been thinking of doing a basic string manipulation library (to make writing a kernel-out function easier), but I'd rather avoid inline assembly if I can and most of the implementations of vsprintf and printf that I've seen either rely on the C standard library or use inline assembly. But assuming I finish that library fairly quickly, what's next? Most of the major components of operating systems seem to rely on each other, are there any components I can build and test on their own?