comparison vgmplay.c @ 1983:a7b753e260a2 mame_interp

Merge from default
author Michael Pavone <pavone@retrodev.com>
date Sat, 09 May 2020 23:39:44 -0700
parents 357878be8be6
children 7ebcbef45362
comparison
equal deleted inserted replaced
1937:cafde1255ad3 1983:a7b753e260a2
11 #include <stdint.h> 11 #include <stdint.h>
12 #include <stdio.h> 12 #include <stdio.h>
13 #include <stdlib.h> 13 #include <stdlib.h>
14 #include <string.h> 14 #include <string.h>
15 #include "vgm.h" 15 #include "vgm.h"
16 #include "system.h"
16 17
17 #define MCLKS_NTSC 53693175 18 #define MCLKS_NTSC 53693175
18 #define MCLKS_PAL 53203395 19 #define MCLKS_PAL 53203395
19 20
20 #define MCLKS_PER_68K 7 21 #define MCLKS_PER_68K 7
21 #define MCLKS_PER_YM MCLKS_PER_68K 22 #define MCLKS_PER_YM MCLKS_PER_68K
22 #define MCLKS_PER_Z80 15 23 #define MCLKS_PER_Z80 15
23 #define MCLKS_PER_PSG (MCLKS_PER_Z80*16) 24 #define MCLKS_PER_PSG (MCLKS_PER_Z80*16)
25
26 system_header *current_system;
24 27
25 void handle_keydown(int keycode) 28 void handle_keydown(int keycode)
26 { 29 {
27 } 30 }
28 31