Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gdbserver
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
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
redox-os
gdbserver
Commits
ed3e5367
Verified
Commit
ed3e5367
authored
Jul 06, 2020
by
jD91mZM2
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reformat assembly
parent
4d04a047
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
binaries/minimal.asm
binaries/minimal.asm
+6
-6
binaries/redox.asm
binaries/redox.asm
+6
-6
No files found.
binaries/minimal.asm
View file @
ed3e5367
...
...
@@ -8,12 +8,12 @@ len: equ $-str
section
.text
_start:
mov
rax
,
1
; write
mov
rdi
,
1
; stdout
mov
rsi
,
str
; buf
mov
rdx
,
len
; len
mov
rax
,
1
; write
mov
rdi
,
1
; stdout
mov
rsi
,
str
; buf
mov
rdx
,
len
; len
syscall
mov
rax
,
60
; exit
xor
rdi
,
rdi
; status
mov
rax
,
60
; exit
xor
rdi
,
rdi
; status
syscall
binaries/redox.asm
View file @
ed3e5367
...
...
@@ -8,12 +8,12 @@ len: equ $-str
section
.text
_start:
mov
rax
,
0x2100
_0004
; write
mov
rdi
,
1
; stdout
mov
rsi
,
str
; buf
mov
rdx
,
len
; len
mov
rax
,
0x2100
_0004
; write
mov
rdi
,
1
; stdout
mov
rsi
,
str
; buf
mov
rdx
,
len
; len
syscall
mov
rax
,
1
; exit
xor
rdi
,
rdi
; status
mov
rax
,
1
; exit
xor
rdi
,
rdi
; status
syscall
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