diff options
author | Nathaniel Graff <nathaniel.graff@sifive.com> | 2019-03-07 09:27:31 -0800 |
---|---|---|
committer | Nathaniel Graff <nathaniel.graff@sifive.com> | 2019-03-07 09:27:31 -0800 |
commit | f695df295da82c8ef801906ad8b00b0e8afa7502 (patch) | |
tree | cb0a9be10abe32a014baf2fa7903b9070461a7ad /bsp/libwrap/misc | |
parent | 90ab2c8561eb532b382206c8bf3ec1af74f18257 (diff) |
Remove legacy BSP
Signed-off-by: Nathaniel Graff <nathaniel.graff@sifive.com>
Diffstat (limited to 'bsp/libwrap/misc')
-rw-r--r-- | bsp/libwrap/misc/write_hex.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/bsp/libwrap/misc/write_hex.c b/bsp/libwrap/misc/write_hex.c deleted file mode 100644 index a35ad7a..0000000 --- a/bsp/libwrap/misc/write_hex.c +++ /dev/null @@ -1,19 +0,0 @@ -/* See LICENSE of license details. */ - -#include <stdint.h> -#include <unistd.h> -#include "platform.h" - -void write_hex(int fd, unsigned long int hex) -{ - uint8_t ii; - uint8_t jj; - char towrite; - write(fd , "0x", 2); - for (ii = sizeof(unsigned long int) * 2 ; ii > 0; ii--) { - jj = ii - 1; - uint8_t digit = ((hex & (0xF << (jj*4))) >> (jj*4)); - towrite = digit < 0xA ? ('0' + digit) : ('A' + (digit - 0xA)); - write(fd, &towrite, 1); - } -} |