Expand description
Read and write Gfx packets.
The input consists of any number of Gfx packets, and the output is the
decompiled macros in plain-text. The endianness and microcode type of the
input can be set using gfxd_endian and gfxd_target.
Several methods of doing I/O are available. No method is selected by default, meaning there will be no input, and any output will be discarded.
Functions§
- gfxd_
input_ ⚠buffer - Use the buffer pointed to by
buf, ofsizebytes. - gfxd_
input_ ⚠callback - Use the provided callback function,
fn. - gfxd_
input_ ⚠fd - Use
read()with the provided file descriptor,fd. - gfxd_
output_ ⚠buffer - Use the buffer pointed to by
buf, ofsizebytes. - gfxd_
output_ ⚠callback - Use the provided callback function,
fn. - gfxd_
output_ ⚠fd - Use
write()with the provided file descriptor,fd.