11 lines
327 B
C++
11 lines
327 B
C++
#include <m68hc11/mainfrm.hpp>
|
|
|
|
int PASCAL WinMain(HINSTANCE /*hInstance*/,HINSTANCE /*hPrevInstance*/,LPSTR /*lpszCmdLine*/,int /*nCmdShow*/)
|
|
{
|
|
MainFrame frameWindow;
|
|
frameWindow.createWindow("M68HC11","M68HC11 v1.00","mainMenu","MOT");
|
|
frameWindow.loadAccelerators(M68ACCELERATORS);
|
|
return frameWindow.messageLoop();
|
|
}
|
|
|