This commit is contained in:
2024-08-07 09:12:07 -04:00
parent ca445435a0
commit fdfadd5c7e
1021 changed files with 73601 additions and 0 deletions

12
as68hc11/backup/Main.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include <common/windows.hpp>
#include <as68hc11/asm6811.hpp>
int PASCAL WinMain(HINSTANCE hInstance,HINSTANCE /*hPrevInstance*/,LPSTR /*lpszCmdLine*/,int /*nCmdShow*/)
{
M68Assembler m68Assembler;
m68Assembler.assemble("test9.asm");
// m68Assembler.assemble("test7.asm");
// m68Assembler.assemble("test8.asm");
::OutputDebugString(m68Assembler.strLastMessage()+String("\n"));
return FALSE;
}