unicorn icon indicating copy to clipboard operation
unicorn copied to clipboard

How to read m68k VBR from Python?

Open DavidBuchanan314 opened this issue 11 months ago • 1 comments

I see there's a helper method internal to the C implementation: https://github.com/unicorn-engine/unicorn/blob/64c72267aed15e8a47dec7b9d9df6d9e36459757/qemu/target/m68k/helper.c#L128-L129

Is there some way I can access the value from python? I believe this is necessary to implement interrupt properly (since I need to know where to dispatch to)

DavidBuchanan314 avatar Mar 09 '25 22:03 DavidBuchanan314

Implemented in d3674f84b4556c8b1c12900f6eb32c44aa470daa

You need to compile the python bindings to use before next release

wtdcode avatar Mar 10 '25 03:03 wtdcode