1
0
mirror of https://github.com/prirun/p50em.git synced 2026-01-17 16:33:54 +00:00

em.c: remove boot_tv as it's no longer used

This commit is contained in:
Jim Wilcoxson 2020-04-17 20:19:23 +00:00
parent 4561acc0b1
commit 02f841d87f

10
em.c
View File

@ -4378,9 +4378,6 @@ int main (int argc, char **argv) {
#define XJ 0312
#define XRBRACE 0375
struct timeval boot_tv;
struct timezone tz;
printf("[Prime Emulator ver %s %s]\n", REV, __DATE__);
printf("[Copyright (C) 2005-2019 Jim Wilcoxson prirun@gmail.com]\n");
if (argc > 1 && (strcmp(argv[1],"--version") == 0)) {
@ -4918,13 +4915,6 @@ a filename, CPU registers and keys are loaded from the runfile header.\n\
}
RPL = rvec[2];
/* initialize the timer stuff */
if (gettimeofday(&boot_tv, &tz) != 0) {
perror("gettimeofday failed");
fatal(NULL);
}
/* main instruction decode loop */
grp = RP; /* see similar assignments in fault, before longjmp */