HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Convert between values and byte arrays. More...
Go to the source code of this file.
Functions | |
void | V2B_MSB (uint8_t *B, int index, int size, uint32_t val) |
Convert Value into byte array bytes are MSB ... LSB order. More... | |
void | V2B_LSB (uint8_t *B, int index, int size, uint32_t val) |
Convert Value into byte array bytes are LSB ... MSB order. More... | |
uint32_t | B2V_MSB (uint8_t *B, int index, int size) |
Convert a byte array into a value bytes are MSB ... LSB order. More... | |
uint32_t | B2V_LSB (uint8_t *B, int index, int size) |
Convert a byte array into a value bytes are LSB ... MSB order. More... | |
void | B2S (uint8_t *B, int index, uint8_t *name, int size) |
Create a string from data that has no EOS but known size. More... | |
Convert between values and byte arrays.
Definition in file vector.c.
void B2S | ( | uint8_t * | B, |
int | index, | ||
uint8_t * | name, | ||
int | size | ||
) |
uint32_t B2V_LSB | ( | uint8_t * | B, |
int | index, | ||
int | size | ||
) |
Convert a byte array into a value bytes are LSB ... MSB order.
B | byte array |
index | offset into byte array |
size | number of bytes to process |
Definition at line 78 of file vector.c.
Referenced by lif_str2dir(), td0_read_disk(), td0_rle(), td0_unpack_comment_header(), td0_unpack_disk_header(), td0_unpack_sector_header(), and td0_unpack_track_header().
uint32_t B2V_MSB | ( | uint8_t * | B, |
int | index, | ||
int | size | ||
) |
Convert a byte array into a value bytes are MSB ... LSB order.
B | byte array |
index | offset into byte array |
size | number of bytes to process |
Definition at line 58 of file vector.c.
Referenced by lif_str2dir(), lif_str2vol(), and SS80_Command_State().
void V2B_LSB | ( | uint8_t * | B, |
int | index, | ||
int | size, | ||
uint32_t | val | ||
) |
Convert Value into byte array bytes are LSB ... MSB order.
B | byte array |
index | offset into byte array |
size | number of bytes to process |
val | Value to convert |
Definition at line 41 of file vector.c.
Referenced by lif_dir2str().
void V2B_MSB | ( | uint8_t * | B, |
int | index, | ||
int | size, | ||
uint32_t | val | ||
) |
Convert Value into byte array bytes are MSB ... LSB order.
B | byte array |
index | offset into byte array |
size | number of bytes to process |
val | Value to convert |
Definition at line 22 of file vector.c.
Referenced by lif_dir2str(), lif_vol2str(), Send_Identify(), SS80_send_status(), and V2B_MSB_Index1().