From d53b41750a94a92cd941e74bb62ae0d67e1df220 Mon Sep 17 00:00:00 2001 From: aaron Date: Sat, 20 May 2017 17:32:57 +0000 Subject: [PATCH] More ubit types git-svn-id: https://spexeah.com:8443/svn/Asuro@144 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c --- src/system.pas | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/system.pas b/src/system.pas index ba7016b6..56d1ca37 100644 --- a/src/system.pas +++ b/src/system.pas @@ -58,6 +58,9 @@ type UBit2 = 0..(1 shl 2) - 1; UBit3 = 0..(1 shl 3) - 1; UBit4 = 0..(1 shl 4) - 1; + UBit5 = 0..(1 shl 5) - 1; + UBit6 = 0..(1 shl 6) - 1; + UBit7 = 0..(1 shl 7) - 1; UBit20 = 0..(1 shl 20) - 1; implementation