mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-23 03:49:26 +01:00
16 lines
233 B
C
16 lines
233 B
C
|
/*
|
||
|
* SAM.h - Simple Assembler and Monitor With Integrated System Explorer
|
||
|
*
|
||
|
* Frodo (C) 1994-1997,2002 Christian Bauer
|
||
|
*/
|
||
|
|
||
|
#ifndef _SAM_H
|
||
|
#define _SAM_H
|
||
|
|
||
|
class C64;
|
||
|
|
||
|
// Exported functions
|
||
|
extern void SAM(C64 *the_c64);
|
||
|
|
||
|
#endif
|