make all source files lowercase, fix includes
Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
This commit is contained in:
parent
11a3dc67ce
commit
2556240c8e
53 changed files with 47 additions and 47 deletions
|
@ -8,8 +8,8 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "Opcodes.h"
|
||||
#include "emu48.h"
|
||||
#include "opcodes.h"
|
||||
#include "apple.h"
|
||||
#include "io.h" // I/O register definitions
|
||||
#include "i28f160.h"
|
||||
|
@ -18,7 +18,7 @@
|
|||
|
||||
#pragma intrinsic(memset,memcpy)
|
||||
|
||||
#include "Ops.h"
|
||||
#include "ops.h"
|
||||
|
||||
//
|
||||
// ROM buffer access functions
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
|
||||
// hand cursor AND mask
|
||||
static CONST BYTE ANDmaskCursor[] =
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "io.h"
|
||||
|
||||
HDDEDATA CALLBACK DdeCallback(UINT iType,UINT iFmt,HCONV hConv,
|
|
@ -8,12 +8,12 @@
|
|||
*/
|
||||
#include "pch.h"
|
||||
#include "resource.h"
|
||||
#include "Emu48.h"
|
||||
#include "Opcodes.h"
|
||||
#include "emu48.h"
|
||||
#include "opcodes.h"
|
||||
#include "ops.h"
|
||||
#include "debugger.h"
|
||||
|
||||
#include "Emu48Dll.h"
|
||||
#include "emu48dll.h"
|
||||
|
||||
#define MAXBREAKPOINTS 256 // max. number of breakpoints
|
||||
|
|
@ -8,8 +8,8 @@
|
|||
*/
|
||||
#include "pch.h"
|
||||
#include "resource.h"
|
||||
#include "Emu48.h"
|
||||
#include "Opcodes.h"
|
||||
#include "emu48.h"
|
||||
#include "opcodes.h"
|
||||
#include "ops.h"
|
||||
#include "color.h"
|
||||
#include "disrpl.h"
|
|
@ -8,7 +8,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
|
||||
#pragma inline_depth(0)
|
||||
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
|
||||
typedef struct // type of model memory mapping
|
||||
{
|
|
@ -9,7 +9,7 @@
|
|||
*/
|
||||
#include "pch.h"
|
||||
#include "resource.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "io.h"
|
||||
#include "kml.h"
|
||||
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "disrpl.h"
|
||||
|
||||
DWORD dwRplPlatform = RPL_P3; // current RPL platform
|
|
@ -8,7 +8,7 @@
|
|||
*/
|
||||
#include "pch.h"
|
||||
#include "resource.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "io.h"
|
||||
#include "kml.h"
|
||||
#include "debugger.h"
|
||||
|
@ -1751,7 +1751,7 @@ static LRESULT OnToolDisasm(VOID) // disasm dialogbox call
|
|||
|
||||
static LRESULT OnTopics(VOID)
|
||||
{
|
||||
ShellExecute(hWnd,_T("open"),_T("Emu48.htm"),NULL,szEmuDirectory,SW_SHOWNORMAL);
|
||||
ShellExecute(hWnd,_T("open"),_T("emu48.htm"),NULL,szEmuDirectory,SW_SHOWNORMAL);
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Emu48.h
|
||||
* emu48.h
|
||||
*
|
||||
* This file is part of Emu48
|
||||
*
|
|
@ -9,12 +9,12 @@
|
|||
|
||||
#include "pch.h"
|
||||
#include "resource.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "io.h"
|
||||
#include "kml.h"
|
||||
#include "debugger.h"
|
||||
|
||||
#include "Emu48Dll.h"
|
||||
#include "emu48dll.h"
|
||||
|
||||
static LPCTSTR pArgv[3]; // command line memory
|
||||
static ATOM classAtom = INVALID_ATOM; // window class atom
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Emu48Dll.h
|
||||
* emu48dll.h
|
||||
*
|
||||
* This file is part of Emu48
|
||||
*
|
|
@ -7,8 +7,8 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "Opcodes.h"
|
||||
#include "emu48.h"
|
||||
#include "opcodes.h"
|
||||
#include "io.h"
|
||||
#include "debugger.h"
|
||||
|
||||
|
@ -72,7 +72,7 @@ static DWORD dwOldCyc; // cpu cycles at last event
|
|||
static DWORD dwSpeedRef; // timer value at last event
|
||||
static DWORD dwTickRef; // sample timer ticks
|
||||
|
||||
#include "Ops.h"
|
||||
#include "ops.h"
|
||||
|
||||
// save last instruction in circular instruction buffer
|
||||
static __inline VOID SaveInstrAddr(DWORD dwAddr)
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "ops.h"
|
||||
|
||||
#define SAMPLES_PER_SEC 44100 // sound sampling rate
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Opcodes.h"
|
||||
#include "opcodes.h"
|
||||
|
||||
#define F 0xFF // F = function
|
||||
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "ops.h"
|
||||
#include "io.h" // I/O register definitions
|
||||
#include "kml.h"
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "i28f160.h"
|
||||
|
||||
#define ARRAYSIZEOF(a) (sizeof(a) / sizeof(a[0]))
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "io.h" // I/O definitions
|
||||
|
||||
DWORD dwKeyMinDelay = 50; // minimum time for key hold
|
|
@ -8,7 +8,7 @@
|
|||
*/
|
||||
#include "pch.h"
|
||||
#include "resource.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "kml.h"
|
||||
|
||||
#define KEYMACROHEAD "Emu-KeyMacro" // macro signature
|
|
@ -8,7 +8,7 @@
|
|||
*/
|
||||
#include "pch.h"
|
||||
#include "resource.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "kml.h"
|
||||
|
||||
static VOID InitLex(LPCTSTR szScript);
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "io.h" // I/O definitions
|
||||
|
||||
// #define BAT_SIMULATION // switch low bat simulation
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "ops.h"
|
||||
#include "opcodes.h"
|
||||
#include "io.h"
|
|
@ -8,7 +8,7 @@
|
|||
*/
|
||||
#include "pch.h"
|
||||
#include "resource.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
|
||||
static TCHAR szOriginal[MAX_PATH] = _T("");
|
||||
|
|
@ -8,8 +8,8 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "Opcodes.h"
|
||||
#include "emu48.h"
|
||||
#include "opcodes.h"
|
||||
#include "apple.h"
|
||||
#include "io.h" // I/O register definitions
|
||||
|
||||
|
@ -25,7 +25,7 @@
|
|||
|
||||
#pragma intrinsic(memset,memcpy)
|
||||
|
||||
#include "Ops.h"
|
||||
#include "ops.h"
|
||||
|
||||
// Fields start and length
|
||||
UINT F_s[16] = {0/*P*/,0,2,0,15,3,0,0,0,0,0,0,0,0,0,0};
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "io.h"
|
||||
|
||||
#define ERR_CHAR 127 // character for transfer error
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "ops.h"
|
||||
|
||||
// flash page types
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "ops.h"
|
||||
#include "io.h"
|
||||
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "io.h"
|
||||
|
||||
#define INTERRUPT ((void)(Chipset.SoftInt=TRUE,bInterrupt=TRUE))
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "i28f160.h"
|
||||
|
||||
// #define REGISTRY // use registry instead of *.ini file
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "snddef.h"
|
||||
|
||||
typedef HRESULT (WINAPI *LPFNDLLGETCLASSOBJECT)(REFCLSID,REFIID,LPVOID *);
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
|
||||
// #define DEBUG_SOUND // switch for sound debug purpose
|
||||
// #define SINE_APPROX // sine signal approximation
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "io.h"
|
||||
|
||||
#define fnRadix 51 // fraction mark
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
|
||||
//################
|
||||
//#
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
#include "ops.h"
|
||||
#include "io.h" // I/O definitions
|
||||
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*/
|
||||
#include "pch.h"
|
||||
#include "Emu48.h"
|
||||
#include "emu48.h"
|
||||
|
||||
TCHAR szUdpServer[1024] = _T("localhost");
|
||||
WORD wUdpPort = 5025; // scpi-raw
|
Loading…
Reference in a new issue