diff options
author | Charles Crayne <chuck@thor.crayne.org> | 2007-11-06 18:27:23 -0800 |
---|---|---|
committer | Charles Crayne <chuck@thor.crayne.org> | 2007-11-06 18:27:23 -0800 |
commit | 1f8bc4c9a90ef5c28ba65627f4088920bfb61df4 (patch) | |
tree | 769a8a9984a564734ff3c5a87e691911e8b2d193 /assemble.h | |
parent | 1b851dcd0406de66c91f3d0bfa6cf687bbc11b4a (diff) | |
download | nasm-1f8bc4c9a90ef5c28ba65627f4088920bfb61df4.tar.gz nasm-1f8bc4c9a90ef5c28ba65627f4088920bfb61df4.tar.bz2 nasm-1f8bc4c9a90ef5c28ba65627f4088920bfb61df4.zip |
Prepare for 64-bit instruction lengths
Diffstat (limited to 'assemble.h')
-rw-r--r-- | assemble.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,9 +9,9 @@ #ifndef NASM_ASSEMBLE_H #define NASM_ASSEMBLE_H -int32_t insn_size(int32_t segment, int32_t offset, int bits, uint32_t cp, +int64_t insn_size(int32_t segment, int64_t offset, int bits, uint32_t cp, insn * instruction, efunc error); -int32_t assemble(int32_t segment, int32_t offset, int bits, uint32_t cp, +int64_t assemble(int32_t segment, int64_t offset, int bits, uint32_t cp, insn * instruction, struct ofmt *output, efunc error, ListGen * listgen); |