]> begriffs open source - cmsis/blob - CMSIS/CoreValidation/Tests/buildutils/dircmd.py
CoreValidation: Fixed rtebuild settings for Cortex-A5neon.
[cmsis] / CMSIS / CoreValidation / Tests / buildutils / dircmd.py
1 #! python
2
3 from buildcmd import BuildCmd
4
5 class DirCmd(BuildCmd):
6
7   def __init__(self):
8     BuildCmd.__init__(self)
9     
10   def getCommand(self):
11     return "dir"
12
13