I created a picotron cheatsheet that you can use as your picotron wallpaper.
PICO-8 already has cheatsheet wallpapers and picotron has built-in wallpaper support so it seemed like the perfect fit.
Some text also contains additional information hidden inside a tooltip that shows up when hovering with the mouse.
Colors and the delay for the tooltip to show up can be changed in /appdata/cheatsheet/config.pod
. Changes are applied automatically.
In case you want to use this cheatsheet outside of picotron, here are some screenshots:
You can paste the following into the terminal to change to the dark colorscheme from the screenshot:
store("/appdata/cheatsheet/config.pod", unpod("b64:bHo0AGsAAACIAAAA8w17Ymc9MCxoZWFkZXI9OCxob3Zlcl9zaWRlPTIwDgBhdHh0PTQsFADxBDUsdGl0bGU9MjQsdG9vbHRpcF9AAAUNACJvckgABBEAADwAJDIyDwCjZGVsYXk9MC41LBgAoHZlcnNpb249MX0=")) [ [size=16][color=#ffaabb] [ Continue Reading.. ] [/color][/size] ](/bbs/?pid=165093#p) |




It's a mostly green system theme.
You can paste
store("/appdata/system/themes/forest.theme", unpod("b64:bHo0AEgBAAD5AQAAoHtkZXNrMD0xMywJAEExPTE0CQCRX3NoYWRvdz01DgB0dG9wMD0xOQwANDE9MwsA8RNfcGF0dGVybj1weHUAQyAICAQHcAcABxAHEBcQFyAHEAeADgAVABAAFRA6AANiAABXAMJvcl9ib3JkZXI9MjEOAHF1dHRvbj01DQBRZnJhbWWiAKBvcl90aXRsZT02DABKbWFudDgAAhIAAjwAJTE5EgACQQAlMjcRAAJFAJEzLGljb24wPTcIAEExPTExCQAyMj0yEgAQM0QAlHRvb2xiYXI9NwoAEDGKAAMMABcyDABQX2JhY2uIAAQQAABDAAggAFZpdGVtPQ8AgHNlbGVjdGVkdwA0d2luyQADDQADxAARMw4AA8AAETkNAAK8ABA3DAA0ZG93NwAVMBAAAjoAFDMQAAI8ACQxMRAAkHRpdGxlPTE5fQ==")) |
into the picotron terminal to install it (assuming you already created the /appdata/system/themes/ folder).
Alternatively, heres the uncompressed theme file:
{desk0=13,desk1=14,desk_shadow=5,desktop0=19,desktop1=3,desktop_pattern=userdata("u8",8,8,"07000000000000000007000700000700000707000007070000000700000700000000000000000007000700000700070000070700000707000000070000070000"),desktop_shadow=19,dor_border=21,dor_button=5,dor_frame=13,dor_title=6,dormant_border=21,dormant_button=19,dormant_frame=27,dormant_title=3,icon0=7,icon1=11,icon2=27,icon3=19,toolbar=7,toolbar1=13,toolbar2=13,toolbar_back=21,toolbar_icon=13,toolbar_item=3,toolbar_selected=11,win_border=1,win_button=13,win_frame=29,win_title=7,window_border=0,window_button=3,window_frame=11,window_title=19} [ [size=16][color=#ffaabb] [ Continue Reading.. ] [/color][/size] ](/bbs/?pid=164577#p) |
matmul and matmul3d seem to yield wrong results when used in the form a:matmul(b, a)
, while a = a:matmul(b)
yields the expected result. This is probably because positions are overwritten with their results even if they are still needed for the calculation of other positions.
This could probably be fixed if a:matmul(b, a)
calculated results columnwise and buffered results until the column is finished.
