typo in relocation code
parent
bd5198bf39
commit
e9493b78df
|
|
@ -45,7 +45,7 @@ void relocate_code();
|
||||||
given address */
|
given address */
|
||||||
INLINE CELL reloc_get_16_16(CELL* cell)
|
INLINE CELL reloc_get_16_16(CELL* cell)
|
||||||
{
|
{
|
||||||
return ((*(cell - 1) & 0xffff) << 16) | (*cell & 0xffff);
|
return ((*cell & 0xffff) << 16) | (*(cell + 1) & 0xffff);
|
||||||
}
|
}
|
||||||
|
|
||||||
INLINE void reloc_set_16_16(CELL* cell, CELL value)
|
INLINE void reloc_set_16_16(CELL* cell, CELL value)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue