Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
0786716c
Commit
0786716c
authored
Nov 27, 2015
by
Damien George
Browse files
py/asmx86: Fix function definition to use int32_t instead of int.
parent
7a5a4fe2
Changes
1
Hide whitespace changes
Inline
Side-by-side
py/asmx86.c
View file @
0786716c
...
...
@@ -305,7 +305,7 @@ void asm_x86_mov_i8_to_r8(asm_x86_t *as, int src_i8, int dest_r32) {
}
#endif
void
asm_x86_mov_i32_to_r32
(
asm_x86_t
*
as
,
int
src_i32
,
int
dest_r32
)
{
void
asm_x86_mov_i32_to_r32
(
asm_x86_t
*
as
,
int
32_t
src_i32
,
int
dest_r32
)
{
asm_x86_write_byte_1
(
as
,
OPCODE_MOV_I32_TO_R32
|
dest_r32
);
asm_x86_write_word32
(
as
,
src_i32
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment