Hello everyone! This is my first time posting on this forum. I signed up because I am having a bit of trouble with my Z80 computer ( depicted below the code ). I already put the computer on a perforated board, but the system does not seem to output any correct data. Here is the code that I programmed into EEPROM:

Code:
org 0x0000
uart_init:
ld a, 0x80
out (0x03), a
ld a, 12
out(0x00), a
ld a, 00
out(0x01), a
ld a, 0x03
out(0x03),a
uart_out:
in a, (0x05)
bit 5, a
jp z, uart_out
ld a, 0x41
out (0x00), a
jp uart_out


