Hallo Wissende,
ich möchte eine Variable am Port ausgeben. Leider wird im Simulator nur bis 5 hochgezählt aber an dem PortB tut sich nichts, woran kann das liegen.
Wie funktioniert sowas eigentlich prinzipiell?
Könnt Ihr mir bitte helfen, wär sehr nett?
Vielen Dank für Antworten. MfG

Hier ist das Programm dazu:

HTML-Code:
$regfile = "m8def.dat"
$crystal = 8000000
$hwstack = 40
$swstack = 32
$framesize = 60

Ddrb = &B0001_1111
Portb = &B0000_0000

Dim A As Byte

Portb = A

Do

For A = 0 To 4
Waitms 10
Next A

Waitms 200

Loop

End