C64 emulation on STM32F429 Discovery board with builtin LCD and USB keyboard support (OTG). More info at davevw.com and/or github.com/davervw

Dependencies:   LCD_DISCO_F429ZI BSP_DISCO_F429ZI USBHOST

Revision:
9:a0c6747e539f
Parent:
4:8476be802690
--- a/emu6502.cpp	Wed Apr 15 05:34:25 2020 +0000
+++ b/emu6502.cpp	Thu Apr 16 06:38:02 2020 +0000
@@ -70,7 +70,7 @@
 }
 #endif
 
-static void PHP()
+extern void PHP()
 {
 	int flags = (N ? 0x80 : 0)
 		| (V ? 0x40 : 0)