844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
|
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
|
+
+
-
|
cmp al, 'l'
jne .pre_loop
mov [.fLabel], 1
jmp .pre_loop
.label_name:
mov [.fSkip], 1 ; after processing the label name, skip to the end of the line.
cmp byte [ebx], '.' ; it is local label
je .pre_loop
cmp word [ebx], '@@'
je .pre_loop
mov ecx, eax
stdcall StrNew
mov [.current], eax
stdcall StrCopyPart, eax, ebx, 0, ecx
; save the string in one place for later free.
push eax
mov ecx, [ptrGlobalsList]
stdcall AddArrayItems, [ecx+TArray.lparam], 1
mov [ecx+TArray.lparam], edx
pop dword [eax]
mov [.fLabel], 0
mov [.fSkip], 1
jmp .pre_loop
.string:
lodsd
add esi, eax
jmp .pre_loop
|