mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Fixed some bugs.
This commit is contained in:
parent
b85b7147a6
commit
ee4a293d3e
@ -538,6 +538,7 @@ function parse_instructions_segment(
|
||||
type: SegmentType.Instructions,
|
||||
labels,
|
||||
instructions,
|
||||
asm: { labels: [] },
|
||||
};
|
||||
offset_to_segment.set(cursor.position, segment);
|
||||
|
||||
@ -613,6 +614,7 @@ function parse_data_segment(
|
||||
type: SegmentType.Data,
|
||||
labels,
|
||||
data: cursor.array_buffer(end_offset - start_offset),
|
||||
asm: { labels: [] },
|
||||
};
|
||||
offset_to_segment.set(start_offset, segment);
|
||||
}
|
||||
@ -628,6 +630,7 @@ function parse_string_segment(
|
||||
type: SegmentType.String,
|
||||
labels,
|
||||
value: cursor.string_utf16(end_offset - start_offset, true, true),
|
||||
asm: { labels: [] },
|
||||
};
|
||||
offset_to_segment.set(start_offset, segment);
|
||||
}
|
||||
|
@ -29,6 +29,7 @@ test("vararg instructions should be disassembled correctly", () => {
|
||||
]),
|
||||
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_RET, []),
|
||||
],
|
||||
asm: { labels: [] },
|
||||
},
|
||||
];
|
||||
|
||||
|
@ -50,6 +50,7 @@ export function create_new_quest(episode: Episode): QuestModel {
|
||||
]),
|
||||
new_instruction(OP_RET, []),
|
||||
],
|
||||
asm: { labels: [] },
|
||||
},
|
||||
{
|
||||
labels: [150],
|
||||
@ -85,6 +86,7 @@ export function create_new_quest(episode: Episode): QuestModel {
|
||||
new_instruction(OP_P_SETPOS, []),
|
||||
new_instruction(OP_RET, []),
|
||||
],
|
||||
asm: { labels: [] },
|
||||
},
|
||||
],
|
||||
[],
|
||||
|
Loading…
Reference in New Issue
Block a user