Hi there,
I wrote a short 4-instruction NHET program (below), and VLCK2 driving the NHET device is running at 50 MHz, with HR=1 and LR=4.
L00 CNT { next=L01, reg=A, comp=EQ, irq=OFF, max=0x1FFFFFF }
L01 CNT { next=L02, reg=B, comp=EQ, irq=ON, max=32 }
L02 WCAP { next=L00, cond_addr=L03, reg=A, pin=CC0, irq=OFF, event=BOTH, request=GENREQ, reqnum=0, hr_lr=HIGH, data=0, hr_data=0 }
L03 MOV32 { next=L00, reg=B, remote=L01, type=IMTOREG&REM, data=1 }
As we can see in accordance with the Technical Reference Manual, both CNT are in timer mode by default, which should take up 1 HR each to execute; WCAP is taking 1 HR and MOV32 with type=IMTOREG&REM is also taking up 1 HR, for a total of 4 HR when taken (max for this short program).
However, despit the fact that I have LR set to 4, when I simulate this program within the HET IDE, when condition of WCAP is satisfied and jump to MOV32, I received the following error:
Can someone please tell me what I've missed?
Thank you!

