diff options
author | Marvin Borner | 2020-04-25 22:33:57 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-25 22:33:57 +0200 |
commit | f2175ab40a977d15526e7ebc3ad327e3ef825069 (patch) | |
tree | 5cfa998facc0280624ae54d61506305d25d5b8f8 /src/resources | |
parent | cc9323db37e5aa33caddeddc625380a46783d510 (diff) |
Some work on the elf loader
Diffstat (limited to 'src/resources')
-rwxr-xr-x | src/resources/conv.sh | 2 | ||||
-rw-r--r-- | src/resources/font.c | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/resources/conv.sh b/src/resources/conv.sh index 8b38016..36a17d0 100755 --- a/src/resources/conv.sh +++ b/src/resources/conv.sh @@ -4,7 +4,7 @@ printf "// Generated using the Spleen font and the bdf2c converter (modified using the conv.sh script)\n// Spleen font: (c) 2018-2019, Frederic Cambus, License: MIT\n // bdf2c: (c) 2009-2010 Lutz Sammer, License: AGPLv3\n\n" >font.c -printf "#include <stdint.h>\n\nuint32_t magic=0xf0f0f0f0;\n\nuint16_t cursor[19]={0b100000000000,0b110000000000,0b111000000000,0b111100000000,0b111110000000,0b111111000000,0b111111100000,0b111111110000,0b111111111000,0b111111111100,0b111111111110,0b111111111111,0b111111111111,0b111111110000,0b111101111000,0b111001111000,0b110000111100,0b000000111100,0b000000011000};\n" >>font.c +printf "#include <stdint.h>\n\nuint16_t cursor[19]={0b100000000000,0b110000000000,0b111000000000,0b111100000000,0b111110000000,0b111111000000,0b111111100000,0b111111110000,0b111111111000,0b111111111100,0b111111111110,0b111111111111,0b111111111111,0b111111110000,0b111101111000,0b111001111000,0b110000111100,0b000000111100,0b000000011000};\n" >>font.c generate() { font_url="https://raw.githubusercontent.com/fcambus/spleen/master/spleen-$1x$2.bdf" diff --git a/src/resources/font.c b/src/resources/font.c index 4269b35..de5dda1 100644 --- a/src/resources/font.c +++ b/src/resources/font.c @@ -4,8 +4,6 @@ #include <stdint.h> -uint32_t magic = 0xf0f0f0f0; - uint16_t cursor[19] = { 0b100000000000, 0b110000000000, 0b111000000000, 0b111100000000, 0b111110000000, 0b111111000000, 0b111111100000, 0b111111110000, 0b111111111000, 0b111111111100, 0b111111111110, 0b111111111111, |