home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 February
/
Chip_2004-02_cd1.bin
/
zkuste
/
konfig
/
download
/
msic
/
Demos
/
3
/
MemoryViewer.dpr
< prev
next >
Wrap
Text File
|
2003-07-30
|
231b
|
15 lines
program MemoryViewer;
uses
Forms,
Main in 'Main.pas' {Form2};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'Memory Viewer';
Application.CreateForm(TForm2, Form2);
Application.Run;
end.