X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=src%2FEmuConsole.hpp;h=e84d56a16875e8cdec565245241afa9d09f7536d;hb=ec415e2315bfcf647e07febba35db4ef709b27d0;hp=0c2c094699964d93796e68d24115f9b9f8f37c78;hpb=1c6cc28cf5317f2ee9fbc1a408bcaaef3b7378b3;p=emu8051.git diff --git a/src/EmuConsole.hpp b/src/EmuConsole.hpp index 0c2c094..e84d56a 100644 --- a/src/EmuConsole.hpp +++ b/src/EmuConsole.hpp @@ -24,6 +24,8 @@ public: EmuConsole( int argc, char **argv, CPU8051 *mCPU ); ~EmuConsole( ); + CPU8051 *CPU; + void Main( ); void Reset( ); @@ -46,12 +48,9 @@ public: private: - CPU8051 *CPU; int NbBreakpoints; unsigned int Breakpoints[ MAXBP ]; - void LoadHexFile( string Filename ); - unsigned int Ascii2Hex( string istring, unsigned int length ); void Capitalize( string *InputString ); void RemoveSpaces( string *InputString );