remove useless files

This commit is contained in:
Jeremy Penner 2025-06-22 01:43:50 -04:00
parent 8fe453d373
commit 809cf44069
6 changed files with 2 additions and 32 deletions

2
.gitignore vendored
View file

@ -1 +1,3 @@
*.~*
*.dcu

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -1,32 +0,0 @@
unit WinPicoGUS;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Picogus;
type
TPicoGusForm = class(TForm)
CDImageList: TListBox;
Label1: TLabel;
LblFirmwareVersion: TLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
PicoGusForm: TPicoGusForm;
implementation
{$R *.DFM}
initialization
if DetectPicoGUS then
PicoGusForm.LblFirmwareVersion.Caption := ReadModeString(MODE_FWSTRING)
else
PicoGusForm.LblFirmwareVersion.Caption := 'PicoGUS not detected!';
end.