diff options
author | John van Groningen | 2006-11-29 13:30:34 +0000 |
---|---|---|
committer | John van Groningen | 2006-11-29 13:30:34 +0000 |
commit | 6cac07dcc5b7c168071c8f155283adb7b06dafab (patch) | |
tree | 295de8a47db40d767ddcae3724849c39fc786724 | |
parent | fix bug in DtoAC (diff) |
the assembler wants eax instead of rax when loading a dword
-rw-r--r-- | astartup.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/astartup.asm b/astartup.asm index 86a89d5..917f273 100644 --- a/astartup.asm +++ b/astartup.asm @@ -1268,7 +1268,7 @@ DtoAC_: endif DtoAC_string_a2: - mov rax,dword ptr [rbp] + mov eax,dword ptr [rbp] lea rcx,4[rbp] jmp build_string |