This parses the asm files into an RDD of the form RDD[id, (segment, addr, bytes, opcode, rest)].
The benefit of using the asm files is that the bytes are split at instruction boundaries, but I've yet to find a representation that clusters similar instructions. It's at least a good starting point for working with asm.
This parses the asm files into an RDD of the form
RDD[id, (segment, addr, bytes, opcode, rest)]
.The benefit of using the asm files is that the bytes are split at instruction boundaries, but I've yet to find a representation that clusters similar instructions. It's at least a good starting point for working with asm.