Redundant instruction
This is a redundant F instruction.
Converts the character constants specified by s to hexadecimal ASCII code. The hexadecimal code is stored in 6 words starting from the 16-bit area specified by d.
Input
Character constants, max. 12 letters (source).
Output
Starting 16-bit area for storing 6-word ASCII code (destination).
Character constants
Data register
ASCII HEX code
ASCII character
SPACE
If the number of character constants specified by s is less than 12, the ASCII code 16#20 (SPACE) is stored in the extra destination area, e.g. s = ’12345’, d[0] = 3231, d[1] = 3433, d[2] = 2035, d[3] = 2020, d[4] = 2020, d[5] = 2020.
if the last area for ASCII code exceeds the limit (6 words: six 16-bit areas).
if the last area for ASCII code exceeds the limit (6 words: six 16-bit areas).