Q-Code User Manual
Ver. 7.0 2021/11/30
141
; to 0x3.
4.2.37 RandomL != data?Path
The random number is generated by random number generator, and it can be set on
[Option]
page.
RandomH provides high-nibble and RandomL provides low-nibble.
Jump to Path if the low-nibble of random number generator is not equal to data. Data=0~15.
Ex.
RandomL!=0xA?True
; Jump to “True” path if the low-nibble of Random is not
; equal to 0xA.
4.2.38 RandomH != data?Path
The random number is generated by random number generator, and it can be set on
[Option]
page.
RandomH provides high-nibble and RandomL provides low-nibble.
Jump to Path if the high-nibble of random number generator is not equal to data. Data=0~15.
Ex.
RandomH!=0x3?True
; Jump to “True” path if the high-nibble of Random is not
; equal to 0x3.
4.2.39 Random = data?Path
The random number is generated by random number generator, and it can be set on
[Option]
page.
Jump to Path if the number generated by random number generator equals to data.
NY4 / NY5 / NY5+ / NY6 / NY7 / NY9T supports 0 ~ 255.
NX1supports 0 ~ 65535.
Ex.
Random=0x3A
Random=0x3A?True
; Jump to “True” Path if obtained value is equal to 0x3A.
4.2.40 Random != data?Path
The random number is generated by random number generator, and it can be set on
[Option]
page.
Jump to Path if the number generated by random number generator is not equal to data.
NY4 / NY5 / NY6 / NY7 / NY9T supports 0 ~ 255.
NX1supports 0 ~ 65535.
Ex.
Random=0x2A
Random!=0x3A?True
; Jump to “True” path if obtained value is not equal to 0x3A.