view python/ppci/target/__init__.py @ 362:c05ab629976a

Added CPUID for arm
author Windel Bouwman
date Sat, 15 Mar 2014 10:56:34 +0100
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')