comparison ztestgen.c @ 1769:8fe162bdb038 mame_interp

Merge from default
author Michael Pavone <pavone@retrodev.com>
date Fri, 01 Mar 2019 14:17:29 -0800
parents cd6f4cea97b6
children
comparison
equal deleted inserted replaced
1768:63256371046f 1769:8fe162bdb038
9 #include <stdint.h> 9 #include <stdint.h>
10 #include <stdio.h> 10 #include <stdio.h>
11 #include <sys/stat.h> 11 #include <sys/stat.h>
12 #include <sys/types.h> 12 #include <sys/types.h>
13 #include <errno.h> 13 #include <errno.h>
14 #include <time.h>
14 15
15 extern z80inst z80_tbl_a[256]; 16 extern z80inst z80_tbl_a[256];
16 extern z80inst z80_tbl_extd[0xC0-0x40]; 17 extern z80inst z80_tbl_extd[0xC0-0x40];
17 extern z80inst z80_tbl_bit[256]; 18 extern z80inst z80_tbl_bit[256];
18 extern z80inst z80_tbl_ix[256]; 19 extern z80inst z80_tbl_ix[256];
528 } 529 }
529 } 530 }
530 531
531 int main(int argc, char ** argv) 532 int main(int argc, char ** argv)
532 { 533 {
534 srand(time(NULL));
533 z80_gen_all(); 535 z80_gen_all();
534 return 0; 536 return 0;
535 } 537 }