Logic
Nybble Splitter
Description A nybble is four bits, or a quarter of a 16-bit word. The Nybble Splitter takes the 16-bit word from Input and separates it into the four nybbles that generate that word.

0x0 ≤ Input ≤ 0xFFFF
0x0 ≤ Nybble ≤ 0xF

Input:     0x48F2
Nybble 3: 0x4
Nybble 2: 0x8
Nybble 1: 0xF
Nybble 0: 0x2
Availability
  • Available only in the dw2xx & dw2xx-v2 series products
  • Requires library: Process Control (option -05)
  • Firmware versions 0x2024 and later
savvy-SFD Graphic nybbleSplitter
Graphic with Parameters nybbleSplitter

Parameters

Input Input, Read-write, Hexadecimal (unsigned 16-bit integer)
0x0 to 0xFFFF

Nybble Splitter - Input

The 16-bit word to be broken-out into four sequential 4-bit nybbles.

Nybble 0 Output, Read-only, Hexadecimal (unsigned 16-bit integer)
0x0 to 0xF

Nybble Splitter - Nybble 0

The least significant 4-bit nybble of the 16-bit input word.

Nybble 1 Output, Read-only, Hexadecimal (unsigned 16-bit integer)
0x0 to 0xF

Nybble Splitter - Nybble 1

The second-least significant 4-bit nybble of the 16-bit input word.

Nybble 2 Output, Read-only, Hexadecimal (unsigned 16-bit integer)
0x0 to 0xF

Nybble Splitter - Nybble 2

The second-most significant 4-bit nybble of the 16-bit input word.

Nybble 3 Output, Read-only, Hexadecimal (unsigned 16-bit integer)
0x0 to 0xF

Nybble Splitter - Nybble 3

The most significant 4-bit nybble of the 16-bit input word.