2021-10-01 13:05:36 +02:00
|
|
|
<% def getInstructionGroups() {
|
|
|
|
def instrGroups = [:]
|
|
|
|
instructions.each {
|
|
|
|
def groupName = it['instruction'].eContainer().name
|
|
|
|
if(!instrGroups.containsKey(groupName)) {
|
|
|
|
instrGroups[groupName]=[]
|
|
|
|
}
|
|
|
|
instrGroups[groupName]+=it;
|
|
|
|
}
|
|
|
|
instrGroups
|
|
|
|
}%><%getInstructionGroups().each{name, instrList -> %>
|
|
|
|
${name}: <% instrList.findAll{!it.instruction.name.startsWith("__")}.each { %>
|
2021-10-01 23:49:04 +02:00
|
|
|
- ${it.instruction.name}:
|
2021-10-01 13:05:36 +02:00
|
|
|
encoding: ${it.encoding}
|
|
|
|
mask: ${it.mask}<%}}%>
|
|
|
|
|