Fixed some bugs.

This commit is contained in:
Daan Vanden Bosch 2019-10-03 00:18:11 +02:00
parent b85b7147a6
commit ee4a293d3e
3 changed files with 7 additions and 0 deletions

View File

@ -538,6 +538,7 @@ function parse_instructions_segment(
type: SegmentType.Instructions, type: SegmentType.Instructions,
labels, labels,
instructions, instructions,
asm: { labels: [] },
}; };
offset_to_segment.set(cursor.position, segment); offset_to_segment.set(cursor.position, segment);
@ -613,6 +614,7 @@ function parse_data_segment(
type: SegmentType.Data, type: SegmentType.Data,
labels, labels,
data: cursor.array_buffer(end_offset - start_offset), data: cursor.array_buffer(end_offset - start_offset),
asm: { labels: [] },
}; };
offset_to_segment.set(start_offset, segment); offset_to_segment.set(start_offset, segment);
} }
@ -628,6 +630,7 @@ function parse_string_segment(
type: SegmentType.String, type: SegmentType.String,
labels, labels,
value: cursor.string_utf16(end_offset - start_offset, true, true), value: cursor.string_utf16(end_offset - start_offset, true, true),
asm: { labels: [] },
}; };
offset_to_segment.set(start_offset, segment); offset_to_segment.set(start_offset, segment);
} }

View File

@ -29,6 +29,7 @@ test("vararg instructions should be disassembled correctly", () => {
]), ]),
new_instruction(OP_RET, []), new_instruction(OP_RET, []),
], ],
asm: { labels: [] },
}, },
]); ]);
@ -56,6 +57,7 @@ test("va list instructions should be disassembled correctly", () => {
new_instruction(OP_VA_END, []), new_instruction(OP_VA_END, []),
new_instruction(OP_RET, []), new_instruction(OP_RET, []),
], ],
asm: { labels: [] },
}, },
]; ];

View File

@ -50,6 +50,7 @@ export function create_new_quest(episode: Episode): QuestModel {
]), ]),
new_instruction(OP_RET, []), new_instruction(OP_RET, []),
], ],
asm: { labels: [] },
}, },
{ {
labels: [150], labels: [150],
@ -85,6 +86,7 @@ export function create_new_quest(episode: Episode): QuestModel {
new_instruction(OP_P_SETPOS, []), new_instruction(OP_P_SETPOS, []),
new_instruction(OP_RET, []), new_instruction(OP_RET, []),
], ],
asm: { labels: [] },
}, },
], ],
[], [],