Initial check in

This commit is contained in:
2026-01-08 19:12:06 +01:00
commit a30568e2a9
35 changed files with 11750 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
unit jtag.svfAstNode;
interface
type
TsvfAstNode = class
public
function AsText: AnsiString; virtual;
end;
implementation
{ TsvfAstNode }
function TsvfAstNode.AsText: AnsiString;
begin
result := '';
end;
end.