Sunday 30 June 2019

x86 - What is the equivalant to idiv in assembly code?

I was wondering what is the equivalent of idiv in assembly. I'm trying to learn assembly and I want to learn how these operations work without using the function idiv. I'm trying to do this with signed values.

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...