Search found 4 matches

by Taken17
Fri Jul 22, 2022 10:40 pm
Forum: Assembly and C Programming in PureBasic
Topic: Need help with logic of IMUL
Replies: 1
Views: 8176

Re: Need help with logic of IMUL

Please disregard. I figured out the calculation. You took the first number and multiplied by 2. Then the next number was multiplied by 3, the next by 4, etc. Going from 120 to 720 you multiplied by 6
by Taken17
Fri Jul 22, 2022 6:45 pm
Forum: Assembly and C Programming in PureBasic
Topic: Need help with logic of IMUL
Replies: 1
Views: 8176

Need help with logic of IMUL

Hi,

I'm having trouble understanding what this section of code is actually doing. The only way I've gotten it to loop through without erroring out is using the format of "%d %d %d %d %d %d". I've inputted "1 2 6 x x x" using 1 2 6 so far makes it through without erroring it out, but I can't figure ...
by Taken17
Fri Jul 15, 2022 9:37 pm
Forum: Assembly and C Programming in PureBasic
Topic: Help with understand ror to determine password
Replies: 2
Views: 7550

Re: Help with understand ror to determine password

Thank you very much. I'll have to look into PB. Just doing this manually shouldn't the answer be F8000554h? That's if it did the rol correctly.

5540000h = 1010101010011110000000000000000b

F8000554h = 11111000000000000000010101010100
by Taken17
Fri Jul 15, 2022 7:06 pm
Forum: Assembly and C Programming in PureBasic
Topic: Help with understand ror to determine password
Replies: 2
Views: 7550

Help with understand ror to determine password

Hi,

Working on a class assignment and i'm trying to understand the ror rotate right argument. Also am I correct in thinking that eax is the user input and is being compared against ebx which means ebx is holding the correct password? I would appreciate any help you can provide.

thanks again ...