Quote Originally Posted by jhorsburgh View Post
Line 41: <code>If RF[0]+RF[1]<>&HFF Then init</code>
Line 42: <code>If RF[2]+RF[3]<>&HFF Then init</code>
Code:
	If RF[0]+RF[1]<>&HFF Then init
	If RF[2]+RF[3]<>&HFF Then init
What is this?
I don't see any reference to &H to represent hexadecimal in the PBP manual...Assembler yes, PBP no...
Code:
	If ( RF[ 0 ] + RF[ 1 ] ) <> $FF Then init
	If ( RF[ 2 ] + RF[ 3 ] ) <> $FF Then init