mirror of
https://github.com/Dennis1000/mos6502-delphi.git
synced 2024-12-22 01:29:59 +00:00
17 lines
300 B
ObjectPascal
17 lines
300 B
ObjectPascal
program VIC20Emu;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
FormV20 in 'FormV20.pas' {FrmVC20},
|
|
VIC20 in 'VIC20.pas',
|
|
MOS6502 in '..\..\Source\MOS6502.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TFrmVC20, FrmVC20);
|
|
Application.Run;
|
|
end.
|