18 lines
242 B
Python
18 lines
242 B
Python
##
|
|
## ASM builder
|
|
##
|
|
|
|
##
|
|
## Get the current builder type.
|
|
## Return the type of builder
|
|
##
|
|
def getType():
|
|
return "compiler"
|
|
|
|
##
|
|
## @brief Get builder file type
|
|
## @return List of extention supported
|
|
##
|
|
def getBuildType():
|
|
return ["s", "S"]
|