move types to other file

This commit is contained in:
Kyle Isom 2023-10-03 01:58:41 -07:00
parent 465e0d1a34
commit f7bd4be3d5
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,8 @@
type
ByteString = String[2]; { String representing a u8. }
ShortString = String[4]; { String representing a u16. }
function ValidHexDigit(bval: Byte): Boolean;
var
IsValid : Boolean = False;

View File

@ -1,8 +1,5 @@
program test;
type
ByteString = String[2];
{$I 'binary.inc'}
var