view ia32/bin_to_h.c @ 2:da946b5ff948

implement page table init.
author taiki
date Sat, 16 Feb 2013 05:47:59 +0900
parents 7ac2a177e25d
children
line wrap: on
line source

#include <stdio.h>
#include <stdlib.h>

int
main(void)
{
	unsigned n = 0;
	int c;

	printf("UINT8 rmswitch_image[] = {\n");

	while ((c = getchar()) != EOF) {
		printf("0x%02x,%s",
			c & 0xFF,
			(++n & 0x07) ? " " : "\n");
	}

	if (n & 0x07) {
		printf("\n");
	}

	printf(
		"};\n"
		"UINTN rmswitch_size = sizeof rmswitch_image;\n");

	return 0;
}