Merge pull request #10 from assp1r1n3/patch-1

Fix minor typo in re102_section4.1.md
This commit is contained in:
SECURED.ORG
2017-09-05 15:09:22 -07:00
committed by GitHub

View File

@@ -74,10 +74,10 @@ So lets create the pseudo code for this loop:
``` ```
int ebx = 0; int ebx = 0;
int length = 265 // 0x100 int length = 256 // 0x100
While (ebx < 256) While (ebx < 256)
{ {
push(i) push(ebx)
ebx++ ebx++
} }
``` ```