very basic code editing!

This commit is contained in:
dylan
2023-05-05 11:52:08 -07:00
parent 6b90d883e9
commit 1e91232bd6
9 changed files with 233 additions and 22 deletions

11
font.ts
View File

@ -14,6 +14,9 @@
* 96 chars * 9 bytes =
*/
export const fontWidth = 4;
export const fontHeight = 6;
// deno-fmt-ignore
export const font: {[key: string]: Array<number>} = {
"A": [
@ -456,6 +459,14 @@ export const font: {[key: string]: Array<number>} = {
0, 0, 0, 0,
0, 0, 0, 0,
],
"\t": [
0, 0, 0, 0,
0, 0, 0, 0,
0, 0, 0, 0,
0, 0, 0, 0,
0, 0, 0, 0,
0, 0, 0, 0,
],
"<": [
0, 0, 0, 1,
0, 0, 1, 0,