Browse Source

palette printer

pixelbath 3 years ago
parent
commit
855154dc1c
1 changed files with 24 additions and 0 deletions
  1. 24 0
      printpalette.lua

+ 24 - 0
printpalette.lua

@@ -0,0 +1,24 @@
+-- title:  print palette
+-- author: pixelbath
+-- desc:   prints the current palette
+-- script: lua
+
+t=0
+x=96
+y=24
+cls()
+
+function TIC()
+	pal_addr=0x3fc0
+	
+	for i=0,15 do
+        offset = i * 3
+		hex = string.format(
+            "%x%x%x"
+            , peek(pal_addr+offset)
+            , peek(pal_addr+offset+1)
+            , peek(pal_addr+offset+2)
+        )
+		print(hex, 0, i*8, 12, 1, 1, 1)
+	end
+end