Je suis un peu confus au sujet du programme simple que j'ai écrit, pouvez-vous s'il vous plaît expliquer pourquoi il se ferme après l'impression d'un seul caractère, je m'attendais m'imprimera caractère toutes les 5 secondes, merci avancehorloge sur pdp-11
tks = 177560
tkb = 177562
tps = 177564
tpb = 177566
lcs = 177546
. = torg + 2000
main: mov #main, sp
mov #clock, @#100 ; vector interrupt of the clock 100-102
mov #300, @#102 ;
mov #100, @#lcs ; here I enable interrupt-enable of the clock
prog: clr r0 ; here endless loop
beq prog
halt
clock: inc count
cmp count, timeout
bne clk_end
clr count
mov #'*, @#tpb
clk_end:rti
. = torg + 3000
timeout: .word 300000
count: .word 0
PDP11? Avez-vous du matériel réel ou utilisez-vous un simulateur? –
@ theatrus: J'utilise simulateur – helloWorld
Simulateur ou non, question du jour. –