mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-16 00:09:20 +00:00
c9553d996d
* Convert file encoding to UTF-8 * Set character sets to UTF-8 explicitly
22 lines
703 B
C++
22 lines
703 B
C++
/* Emulador do computador TK3000 //e (Microdigital)
|
|
* por Fábio Belavenuto - Copyright (C) 2004
|
|
*
|
|
* Adaptado do emulador Applewin por Michael O'Brien
|
|
*
|
|
* Este arquivo é distribuido pela Licença Pública Geral GNU.
|
|
* Veja o arquivo Licenca.txt distribuido com este software.
|
|
*
|
|
* ESTE SOFTWARE NÃO OFERECE NENHUMA GARANTIA
|
|
*
|
|
*/
|
|
|
|
// Emula a CPU Z80
|
|
|
|
// Protótipos
|
|
void ConfigureSoftcard(LPBYTE pCxRomPeripheral, UINT uSlot);
|
|
|
|
// NB. These are in z80.cpp:
|
|
std::string Z80_GetSnapshotCardName(void);
|
|
void Z80_SaveSnapshot(class YamlSaveHelper& yamlSaveHelper, const UINT uSlot);
|
|
bool Z80_LoadSnapshot(class YamlLoadHelper& yamlLoadHelper, UINT uSlot, UINT version);
|