本文整理汇总了Python中Service.readConfig方法的典型用法代码示例。如果您正苦于以下问题:Python Service.readConfig方法的具体用法?Python Service.readConfig怎么用?Python Service.readConfig使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Service
的用法示例。
在下文中一共展示了Service.readConfig方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: open
# 需要导入模块: import Service [as 别名]
# 或者: from Service import readConfig [as 别名]
import JAL_instruction
import JALR_instruction
import Service
R_t = R_type.R_type()
U_t = U_type.U_type();
SB_t = SB_type.SB_type()
L_t = Load_type.Load_type()
S_t = Store_type.Store_type()
Im_t = I_math_type.I_math_type()
Is_t = I_shamt_type.I_shamt_type()
Jal = JAL_instruction.JAL_instruction()
Jalr = JALR_instruction.JALR_instruction()
cfg = Service.readConfig("config.cfg")
start_addr = 0;
if "start_addr" in cfg:
start_addr = Service.Str2Num(cfg["start_addr"])
data = "";
file_addr = "in.ass"
if "in_file_addr" in cfg:
file_addr = cfg["in_file_addr"]
pfile = open(file_addr);
code = Service.SplitToDierctives(pfile)
if ".CODE" not in code:
Service.ERROR("CODE not found error!");
dataD = ""
dataK = ""
code[".CODE"] = code[".CODE"][:-1].split('\n')
if ".DATA" in code: