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

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;
    }
}