Merge pull request #145 from antonblanchard/sim_console-fix

sim_console: Use cfmakeraw() and add option for ctrl-c to exit sim
pull/146/head
Anton Blanchard 4 years ago committed by GitHub
commit 6a9bc46fcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,6 +7,8 @@
#include <unistd.h> #include <unistd.h>
#include <poll.h> #include <poll.h>


/* Should we exit simulation on ctrl-c or pass it through? */
#define EXIT_ON_CTRL_C


#define vhpi0 2 /* forcing 0 */ #define vhpi0 2 /* forcing 0 */
#define vhpi1 3 /* forcing 1 */ #define vhpi1 3 /* forcing 1 */
@ -59,12 +61,12 @@ static void to_std_logic_vector(unsigned long val, unsigned char *p,


static struct termios oldt; static struct termios oldt;


static void restore_termios(void) static void disable_raw_mode(void)
{ {
tcsetattr(STDIN_FILENO, TCSANOW, &oldt); tcsetattr(STDIN_FILENO, TCSANOW, &oldt);
} }


static void nonblocking(void) static void enable_raw_mode(void)
{ {
static bool initialized = false; static bool initialized = false;


@ -73,16 +75,13 @@ static void nonblocking(void)


tcgetattr(STDIN_FILENO, &oldt); tcgetattr(STDIN_FILENO, &oldt);
newt = oldt; newt = oldt;
newt.c_lflag &= ~(ICANON|ECHO); cfmakeraw(&newt);

#ifdef EXIT_ON_CTRL_C
newt.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON); newt.c_lflag |= ISIG;
newt.c_oflag &= ~(OPOST); #endif
newt.c_cflag |= (CS8);
newt.c_lflag &= ~(ECHO | ICANON | IEXTEN | ISIG);

tcsetattr(STDIN_FILENO, TCSANOW, &newt); tcsetattr(STDIN_FILENO, TCSANOW, &newt);
initialized = true; initialized = true;
atexit(restore_termios); atexit(disable_raw_mode);
} }
} }


@ -91,7 +90,7 @@ void sim_console_read(unsigned char *__rt)
int ret; int ret;
unsigned long val = 0; unsigned long val = 0;


nonblocking(); enable_raw_mode();


ret = read(STDIN_FILENO, &val, 1); ret = read(STDIN_FILENO, &val, 1);
if (ret != 1) { if (ret != 1) {
@ -110,7 +109,7 @@ void sim_console_poll(unsigned char *__rt)
struct pollfd fdset[1]; struct pollfd fdset[1];
uint8_t val = 0; uint8_t val = 0;


nonblocking(); enable_raw_mode();


memset(fdset, 0, sizeof(fdset)); memset(fdset, 0, sizeof(fdset));



Loading…
Cancel
Save