Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
50629f03
Commit
50629f03
authored
Dec 31, 1998
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed db_task_printsym to always print a full address, no matter
what the operand size is.
parent
d1717c6b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
13 deletions
+2
-13
db_disasm.c
debugger/db_disasm.c
+2
-13
No files found.
debugger/db_disasm.c
View file @
50629f03
...
...
@@ -1006,19 +1006,8 @@ void db_read_address( DBG_ADDR *addr, int short_addr, int regmodrm,
static
void
db_task_printsym
(
unsigned
int
addr
,
int
size
)
{
switch
(
size
)
{
case
BYTE
:
case
WORD
:
fprintf
(
stderr
,
"0x%4.4x"
,
addr
&
0xffff
);
break
;
case
LONG
:
{
DBG_ADDR
address
=
{
NULL
,
0
,
addr
};
DEBUG_PrintAddress
(
&
address
,
db_disasm_16
?
16
:
32
,
TRUE
);
}
break
;
}
DBG_ADDR
address
=
{
NULL
,
0
,
addr
};
DEBUG_PrintAddress
(
&
address
,
db_disasm_16
?
16
:
32
,
TRUE
);
}
void
...
...
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