Support significant parts of pico 8 graphics

This commit is contained in:
2024-02-25 18:38:53 -08:00
parent 95c03d25d5
commit 30e4d544fd
11 changed files with 225 additions and 15 deletions

7
sys/BUILD Normal file
View File

@ -0,0 +1,7 @@
cc_library(
name = "sys",
srcs = glob(["*.c"]),
hdrs = glob(["*.h"]),
visibility = ["//visibility:public"],
deps = ["//device:device"]
)