![]() |
|
#13
|
|||
|
|||
|
Code:
.data
msgTemplate db "serial %d", 0
serial dd ? ; initialize this somewhere
.code
start:
mov ecx, 222222
loop_start:
mov eax, 2 ; c1
mov ebx, 2 ; c2, etc.
cmp eax, [serial]
je match_found
inc ecx
cmp ecx, 999999
jle loop_start
jmp exit
match_found:
; write your msgbox here :)
exit:
; do your cleanup
![]() You have to write your own logic for digit extraction and calling msgbox |
| Tags |
| source co |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| VC++ to VS2010 conversion | Zeocrack | Source Code | 11 | 10-03-2022 17:03 |
| Firmware Analysis - ZLIB file conversion to Bitmap | psgama | General Discussion | 3 | 08-02-2021 05:03 |
| Anyone can help interpret the algorithm on the data conversion below(ECC related)? | bridgeic | General Discussion | 1 | 10-01-2014 17:39 |