comparison python/target/armframe.py @ 300:158068af716c

yafm
author Windel Bouwman
date Tue, 03 Dec 2013 18:00:22 +0100
parents 534b94b40aa8
children 6753763d3bec
comparison
equal deleted inserted replaced
299:674789d9ff37 300:158068af716c
1 import ir 1 import ir
2 from .basetarget import Label, Comment, Alignment, LabelRef, DebugInfo, Nop 2 from .basetarget import Label, Comment, Alignment, LabelRef, DebugInfo, Nop
3 from .basetarget import Imm7 3 from .basetarget import Imm7
4 from irmach import AbstractInstruction as makeIns, Frame 4 from irmach import makeIns, Frame
5 from .arminstructions import Dcd, AddSp, SubSp, Push, Pop, Mov2 5 from .arminstructions import Dcd, AddSp, SubSp, Push, Pop, Mov2
6 from .arminstructions import R0, R1, R2, R3, R4, R5, R6, R7, LR, PC, SP 6 from .arminstructions import R0, R1, R2, R3, R4, R5, R6, R7, LR, PC, SP
7 7
8 8
9 class ArmFrame(Frame): 9 class ArmFrame(Frame):