15 lines
352 B
C
15 lines
352 B
C
/*
|
|
* Mr Boots Installer
|
|
*
|
|
* Installs Mr. Boots onto a generated disk image.
|
|
* Compile me with your standard C library and for whatever
|
|
* architecture you feel like running me on, though I much
|
|
* prefer something simple and 32-bit.
|
|
*/
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char ** argv) {
|
|
printf("Mr. Boots Installer\n");
|
|
}
|