コード例 #1
0
ファイル: cfu.py プロジェクト: tcal-x/CFU-Playground
def make_cfu():
    return simple_cfu({
        0: SumBytesInstruction(),
        1: ReverseBytesInstruction(),
        2: ReverseBitsInstruction(),
        3: FibInstruction(),
    })
コード例 #2
0
ファイル: cfu.py プロジェクト: tcal-x/CFU-Playground
def make_cfu():
    return simple_cfu({
        # Add instructions here...
        0: TemplateInstruction(),
    })
コード例 #3
0
ファイル: cfu.py プロジェクト: tcal-x/CFU-Playground
def make_cfu():
    return simple_cfu({0: Macc4Instruction()})
コード例 #4
0
ファイル: mnv2_cfu.py プロジェクト: tcal-x/CFU-Playground
def make_cfu():
    return simple_cfu({
        0: Mnv2RegisterInstruction(),
    })