31a32
> from X86IntPin import X86IntPin
32a34,39
> class X86I8259CascadeMode(Enum):
> map = {'I8259Master' : 0,
> 'I8259Slave' : 1,
> 'I8259Single' : 2
> }
>
37c44,48
< master = Param.I8259('The master PIC this PIC is cascaded with, if any')
---
> output = Param.X86IntPin('The pin this I8259 drives')
> mode = Param.X86I8259CascadeMode('How this I8259 is cascaded')
>
> def pin(self, line):
> return X86IntPin(device=self, line=line)