Add friendly graphics implementation

This commit is contained in:
Joey Yakimowich-Payne 2018-06-25 20:14:11 +09:00
commit 459787fd36
10 changed files with 269 additions and 23 deletions

View file

@ -164,7 +164,7 @@ replace.uint64 = "uint64_t* = uint64"
search.import = "type\n"
prepend.import = """
include libnx/ext/integer128
import libnx/ext/integer128
template BIT*(n): auto = (1.uint shl n)
"""
@ -299,3 +299,15 @@ import libnx/wrapper/binder
[nxlink.nim]
search.o = "var __nxlink"
replace.o = "var DUnxlink"
[fs.nim]
search.o = "import libnx"
prepend.o = """
import libnx/ext/integer128
"""
[acc.nim]
search.o = "import libnx"
prepend.o = """
import libnx/ext/integer128
"""