Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
See what's new at GitLab
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
A
asmc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Giovanni Mascellani
asmc
Commits
02c776b3
Unverified
Commit
02c776b3
authored
Mar 10, 2019
by
Giovanni Mascellani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor.
parent
1cc5ff52
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
asmg/asmg.asm
asmg/asmg.asm
+10
-5
No files found.
asmg/asmg.asm
View file @
02c776b3
...
...
@@ -610,7 +610,7 @@ push_expr_symbol_loop:
call
pop_var
;; Decrement arity and reloop
sub
esi
,
1
dec
esi
jmp
push_expr_symbol_loop
push_expr_symbol_loop_end:
...
...
@@ -1014,7 +1014,7 @@ parse_block_call_loop:
call
pop_var
;; Decrement counter and reloop
sub
ebx
,
1
dec
ebx
jmp
parse_block_call_loop
parse_block_call_end:
...
...
@@ -1074,7 +1074,7 @@ parse_block_string:
parse_block_push:
;; Check if we want the address
mov
esi
,
0
xor
esi
,
esi
cmp
BYTE
[
ebx
],
AT_SIGN
jne
parse_block_push_after_if
mov
esi
,
1
...
...
@@ -1110,7 +1110,7 @@ parse_block_break:
mov
eax
,
stack_depth
mov
[
eax
],
esi
mov
eax
,
bl
ock_depth
sub
DWORD
[
eax
],
1
dec
DWORD
[
eax
]
pop
edi
pop
esi
...
...
@@ -1154,15 +1154,19 @@ parse_loop:
je
parse_ret
;; Jump to the appropriate handler
;; fun
cmp
DWORD
[
ebx
],
'
fun
'
je
parse_fun
;; ifun
mov
eax
,
[
ebx
]
sub
eax
,
'
ifun
'
or
al
,
[
ebx
+
4
]
test
eax
,
eax
je
parse_ifun
;; const
mov
eax
,
[
ebx
]
sub
eax
,
'
cons
'
mov cx, [ebx+4]
...
...
@@ -1171,6 +1175,7 @@ parse_loop:
test
eax
,
eax
je
parse_const
;; global declaration
cmp
BYTE
[
ebx
],
DOLLAR
je
parse_var
...
...
@@ -1253,7 +1258,7 @@ parse_const:
parse_var:
;; Increment the pointer and check the string continues
add
ebx
,
1
inc
ebx
cmp
BYTE
[
ebx
],
0
je
platform_panic
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment