#include "jbiport.h" /************************************************************************ * * Global variables */ /* file buffer for JAM input file */ #if PORT == DOS unsigned char **file_buffer = 0; #else unsigned char *file_buffer = 0; #endif long file_pointer = 0L; long file_length = 0L; /* delay count for one millisecond delay */ long one_ms_delay = 0L; /* delay count to reduce the maximum TCK frequency */ int tck_delay = 0; /* serial port interface available on all platforms */ int jtag_hardware_initialized = 0; char *serial_port_name = 0; int specified_com_port = 0; int com_port = -1; int verbose = 0;