bptr simulation bug

Svejk

Senior Member
The assignment

@bptr = <value>

does not simulate correctly in PE v 5.3.1

This code

Code:
#picaxe 28x2
#no_data
#no_table

pause 500

for bptr = 0 to 9
  @bptr = bptr
next

sertxd (#b0, #b1, #b2, #b3, #b4, #b5, #b6, #b7, #b8, #b9)

do:loop
produces "0000000000" in simulator.

Works ok in silicon, tested with Picaxe 28x2.

Regards,
S
 
Top