Zykluszeit im ByteCode

This commit is contained in:
2025-10-13 13:30:00 +02:00
parent 74f256efb2
commit 5a002806a9
46 changed files with 19 additions and 14 deletions

View File

@ -25,7 +25,8 @@ class Program {
ushort ver = r.ReadUInt16();
Console.WriteLine($"Version: {ver}");
bool oldFormat = ver < Bytecode.Version;
ushort cycletime = r.ReadUInt16();
Console.WriteLine($"Cycle: {cycletime} ms");
ushort nConsts = r.ReadUInt16();
Console.WriteLine($"Consts: {nConsts}");
var consts = new List<object>();