aboutsummaryrefslogtreecommitdiff
path: root/DvdLib/Ifo/PgcCommandTable.cs
blob: d329fcba2a157334098a20dd5ed8fb8782dbfe88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System.Collections.Generic;

namespace DvdLib.Ifo
{
    public class ProgramChainCommandTable
    {
        public readonly ushort LastByteAddress;
        public readonly List<VirtualMachineCommand> PreCommands;
        public readonly List<VirtualMachineCommand> PostCommands;
        public readonly List<VirtualMachineCommand> CellCommands;
    }

    public class VirtualMachineCommand
    {
        public readonly byte[] Command;
    }
}