source: branches/AVR/Assembler.dpr

Last change on this file was 1, checked in by george, 15 years ago
  • Přidáno: Větve AVR a Z80.
File size: 351 bytes
Line 
1program Assembler;
2
3uses
4 Forms,
5 UMainForm in 'UMainForm.pas' {MainForm},
6 UInstructionDefinition in 'UInstructionDefinition.pas',
7 UTextFileStream in 'UTextFileStream.pas',
8 UIntelHexFile in 'UIntelHexFile.pas';
9
10{$R *.res}
11
12begin
13 Application.Initialize;
14 Application.CreateForm(TMainForm, MainForm);
15 Application.Run;
16end.
Note: See TracBrowser for help on using the repository browser.