bader357
14.10.2007, 15:06
Ich möchte mit dem Programm und dem PIC16F877a Leuchdioden an PortD ansteuern. Bei der Auswahl an Port A,B oder C funktioniert das auch, nur bei PortD bekomme ich die Fehlermeldung:
Argument out of range (0008 not between 0005 and 0007)
Kann jemand helfen? Danke
portd equ 0x08
TRISE equ 0x88
start movlw 0x00 ;lade W mit 0000 0000
tris portd ;kopiere W tristate PORTD als Ausgang
movlw 0x0f ;lade W mit 0000 1111
movwf portd ;lade PORTD mit dem Inhalt von W
goto start ;Endlosschleife
end
Argument out of range (0008 not between 0005 and 0007)
Kann jemand helfen? Danke
portd equ 0x08
TRISE equ 0x88
start movlw 0x00 ;lade W mit 0000 0000
tris portd ;kopiere W tristate PORTD als Ausgang
movlw 0x0f ;lade W mit 0000 1111
movwf portd ;lade PORTD mit dem Inhalt von W
goto start ;Endlosschleife
end