Michael2_3B wrote:
Woh.
Just tried a new version, and it looks super cool (in my opinion). Again, this is still monochrome.
Even though it looks similar to the first one on the page, it's not. Like always, jsTIfied can't quite capture what I see on my own calculator. Incase you're wondering, the first image is without the jsTIfied skin on, and the second one has the skin on. That's why they appear different.
Anyways, this one uses 2 HEX codes to do it, which fill the screen with white pixels and fill the screen with black pixels. You can't use ClrDraw, because you won't be able to see anything.
Code:
Code:
You can also do this solely with an invert HEX code, which would be
Code:
[EDIT]
You can also use the HEX codes with other commands to make it look really cool. For example, try this:
Code:
Just tried a new version, and it looks super cool (in my opinion). Again, this is still monochrome.
Even though it looks similar to the first one on the page, it's not. Like always, jsTIfied can't quite capture what I see on my own calculator. Incase you're wondering, the first image is without the jsTIfied skin on, and the second one has the skin on. That's why they appear different.
Anyways, this one uses 2 HEX codes to do it, which fill the screen with white pixels and fill the screen with black pixels. You can't use ClrDraw, because you won't be able to see anything.
Code:
White Pixels:
AsmPrgm210000115F3FEF5C4DC9
Black Pixels:
AsmPrgm210000115F3FEF624DC9
Code:
Program:
Repeat getKey
Asm(prgmASM1
Asm(prgmASM2
End
You can also do this solely with an invert HEX code, which would be
Code:
AsmPrgm210000115F3FEF5F4DC9
[EDIT]
You can also use the HEX codes with other commands to make it look really cool. For example, try this:
Code:
Repeat getKey
ClrHome
Asm(prgmASM1 //fills screen with black pixels
End
Any chance that there could be an all-ASM version?