I just realized there was an idiv function, so "hex(int(0x7345/0x654))" can be re-written as "hex(idiv(0x7345;0x654))".
Also, I made it a little easier on myself by defining a couple of functions:
hdiv(x;y) = hex(int(x/y))
hmod(x;y) = hex(mod(x;y))
It would still be nice to do it in one command, or one action.
Not a big fan of keyboard macro software, so that solution isn't preferable to me.
Thanks.