comparison vgmplay.c @ 1944:357878be8be6

Fix vgmplay target
author Michael Pavone <pavone@retrodev.com>
date Sun, 26 Apr 2020 14:56:44 -0700
parents c9695252eff4
children 7ebcbef45362
comparison
equal deleted inserted replaced
1943:794a5c9a2c73 1944:357878be8be6
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