.text
emitchar:
lui $t0,0xffff
polling:
lw $t1,8($t0)
andi $t1,$t1,0x0001
beq $t1,$zero,polling
sw $a0,0xc($t0)
.data
I was told this is how to do it but when I run the simulator with the display and keyboard add in I still get not output on the screen. What am I doing wrong?