CARVIEW |
Select Language
HTTP/2 200
date: Sat, 11 Oct 2025 10:36:07 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=c756dd6507e73e0f9fdcda2df6211d82d3ecd02a8e60e6835ad4d7d21bd05134a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22BK9CgXB7QqfcfBo5bi8V6ax4TNLDs3uG%22%3B%7D; HttpOnly; Path=/
cf-ray: 98cdb6ee6dae0bc9-BLR
.global supersumsupersum: // eax - pointer to A // ebx - pointer to - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- .global supersum
- supersum:
- // eax - pointer to A
- // ebx - pointer to B
- // ecx - pointer to C
- // esi - size A
- // edi - size B
- pushl %ebp
- pushl %edx
- pushl %esi
- pushl %edi
- pushl %ebx
- cmpl %esi, %edi // edi > esi (size B > size A) go to start
- jg start_loop_first
- //swap A, B
- movl %esi, %ebp
- movl %edi, %esi
- movl %ebp, %edi
- movl %eax, %ebp
- movl %ebx, %eax
- movl %ebp, %ebx
- // use ebp as itearator
- start_loop_first:
- xor %ebp, %ebp // i = 0
- loop_first:
- cmpl %esi, %ebp // i > size A
- jg finish_first_loop
- movb $0, (%ecx, %ebp) // C[i] = 0
- addl $1, %ebp // i++
- jmp loop_first
- finish_first_loop:
- xor %ebp, %ebp // i = 0
- loop_second:
- cmpl %edi, %ebp // i > size B
- jg finish_second_loop
- movb $0, (%ecx, %ebp) // C[i] = 0
- addl $1, %ebp // i++
- jmp loop_second
- finish_second_loop:
- xor %ebp, %ebp // i = 0
- clc // CF = 0
- pushf
- loop_add_a:
- cmpl %esi, %ebp // i >= size A
- jge finish_add_a
- movb (%eax, %ebp), %dl // tmp (dl) = A[i]
- popf
- adcb %dl, (%ecx, %ebp) // C[i] += tmp + CF
- pushf
- addl $1, %ebp // i++
- jmp loop_add_a
- finish_add_a:
- popf
- adcb $0, (%ecx, %ebp) // C[i] += CF
- xor %ebp, %ebp // i = 0
- clc // CF = 0
- pushf
- loop_add_b:
- cmpl %edi, %ebp // i >= size B
- jge finish_add_b
- movb (%ebx, %ebp), %dl // tmp (dl) = B[i]
- popf
- adcb %dl, (%ecx, %ebp) // C[i] += tmp + CF
- pushf
- addl $1, %ebp // i++
- jmp loop_add_b
- finish_add_b:
- popf
- adcb $0, (%ecx, %ebp) // C[i] += CF
- // C = A + B
- // now need to find length
- cmpl %edi, %esi // esi > edi
- jg swap_registers
- //edi >= esi
- movl %edi, %ebp
- jmp find_loop
- swap_registers: // esi > edi
- movl %esi, %ebp
- find_loop: // ebp - iterator to last
- cmpl $0, %ebp
- jz finish_program // if ebp == 0
- cmpb $0, (%ecx, %ebp) // C[i] != 0
- jnz finish_program
- subl $1, %ebp // --i
- jmp find_loop
- finish_program:
- cmpb $0, (%ecx, %ebp) // C[i] == 0
- jz zeroo
- jmp finish_last
- zeroo:
- movl $-1, %ebp
- finish_last:
- addl $1, %ebp
- movl %ebp, %eax
- popl %ebx
- popl %edi
- popl %esi
- popl %edx
- popl %ebp
- ret
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐✅ Online Marketplace Exploit ✅ NEVER SEEN BE...
JavaScript | 5 sec ago | 0.24 KB
-
⭐✅ Trading Profit Method ✅ NEVER SEEN BEFORE...
JavaScript | 13 sec ago | 0.24 KB
-
⭐ Instant BTC Profit Method ✅ NEVER SEEN BEFO...
JavaScript | 22 sec ago | 0.24 KB
-
Free Crypto Method (NEVER SEEN BEFORE)⭐⭐ 5
JavaScript | 27 sec ago | 0.24 KB
-
⭐✅ MAKE $2000 INSTANTLY ✅ NEVER SEEN BEFORE ⭐...
JavaScript | 32 sec ago | 0.24 KB
-
⭐✅ MAKE $2500 IN 15 MIN⭐⭐⭐ 4
JavaScript | 34 sec ago | 0.24 KB
-
⭐ Free Crypto Method ✅ NEVER SEEN BEFORE ⭐⭐⭐
JavaScript | 41 sec ago | 0.24 KB
-
✅ Make $2500 in 20 minutes⭐⭐⭐ J
JavaScript | 43 sec ago | 0.24 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand