You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And the handler is also missing in just-in-time (JIT) mode.
The real behavor of the hardware that allows the misaligned memory operation would be taking that operation to piece of the smaller and aligned memory operation (i.e. lb/lbu/sb and lh/lhu/sh for misaligned lw/sw or lb/lbu/sb for misaligned lh/lhu/sh.
The text was updated successfully, but these errors were encountered:
The current exception handling of userspace program simulation simply skip the misaligned memory operation and return from M-mode:
rv32emu/src/emulate.c
Lines 51 to 55 in f7fd15b
And the handler is also missing in just-in-time (JIT) mode.
The real behavor of the hardware that allows the misaligned memory operation would be taking that operation to piece of the smaller and aligned memory operation (i.e.
lb/lbu/sb
andlh/lhu/sh
for misalignedlw/sw
orlb/lbu/sb
for misalignedlh/lhu/sh
.The text was updated successfully, but these errors were encountered: