rework cycle estimation

This commit is contained in:
2022-02-01 19:03:45 +01:00
parent ef2a4df925
commit 059bd0d371
4 changed files with 161 additions and 131 deletions

View File

@ -1,9 +1,12 @@
{
"${coreDef.name}" : [<%instructions.eachWithIndex{instr,index -> %>${index==0?"":","}
{
"name" : "${instr.name}",
"size" : ${instr.length},
"delay" : ${instr.isConditional?"[1,1]":"1"}
"name" : "${instr.name}",
"size" : ${instr.length},
"encoding": ${instr.encoding},
"mask": ${instr.mask},
"branch": ${instr.modifiesPC},
"delay" : ${instr.isConditional?"[1,1]":"1"}
}<%}%>
]
}