mirror of
https://github.com/Dennis1000/mos6502-delphi.git
synced 2024-10-03 03:54:48 +00:00
17 lines
285 B
ObjectPascal
17 lines
285 B
ObjectPascal
|
program C6Emu;
|
||
|
|
||
|
uses
|
||
|
Vcl.Forms,
|
||
|
FormC64 in 'FormC64.pas' {FrmC64},
|
||
|
C64 in 'C64.pas',
|
||
|
MOS6502 in '..\..\Source\MOS6502.pas';
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.MainFormOnTaskbar := True;
|
||
|
Application.CreateForm(TFrmC64, FrmC64);
|
||
|
Application.Run;
|
||
|
end.
|