Skip to content

Commit 0786716

Browse files
committed
py/asmx86: Fix function definition to use int32_t instead of int.
1 parent 7a5a4fe commit 0786716

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

py/asmx86.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ void asm_x86_mov_i8_to_r8(asm_x86_t *as, int src_i8, int dest_r32) {
305305
}
306306
#endif
307307

308-
void asm_x86_mov_i32_to_r32(asm_x86_t *as, int src_i32, int dest_r32) {
308+
void asm_x86_mov_i32_to_r32(asm_x86_t *as, int32_t src_i32, int dest_r32) {
309309
asm_x86_write_byte_1(as, OPCODE_MOV_I32_TO_R32 | dest_r32);
310310
asm_x86_write_word32(as, src_i32);
311311
}

0 commit comments

Comments
 (0)