view python/ppci/target/__init__.py @ 390:b77f3290ac79

Added diagram editor tests
author Windel Bouwman
date Fri, 16 May 2014 10:12:16 +0200
parents 3bb7dcfe5529
children
line wrap: on
line source

#!/usr/bin/env python

from .basetarget import Nop, Instruction, Label, Target, Comment, Alignment


class SimpleTarget(Target):
    def __init__(self):
        super().__init__('SimpleTarget')