Hello,
I try to turn the LCD off and back on - but its not working and I dont know why.
The CALL $000B -Instruction is used for the required delay.
Thank you for your help!
Code:
I try to turn the LCD off and back on - but its not working and I dont know why.
The CALL $000B -Instruction is used for the required delay.
Thank you for your help!
Code:
.nolist
#include "ti83plus.inc"
#define progstart $9D93
.list
.binarymode TI8X
.org progstart
.db $BB, $6D
DI
LD A, $02
OUT (10), A
CALL $000B
LD A, $03
OUT (10), A
CALL $000B
EI
RET