Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xing Lin
qemu
Commits
8dd7cb06
Commit
8dd7cb06
authored
Jun 09, 2003
by
bellard
Browse files
moved to disas.c
git-svn-id:
svn://svn.savannah.nongnu.org/qemu/trunk@223
c046a42c-6fe2-441c-8c8c-71466251a162
parent
d3032929
Changes
1
Hide whitespace changes
Inline
Side-by-side
alpha-dis.c
View file @
8dd7cb06
...
...
@@ -248,19 +248,6 @@ enum bfd_reloc_code_real {
BFD_RELOC_ALPHA_HINT
};
bfd_vma
bfd_getl32
(
addr
)
register
const
bfd_byte
*
addr
;
{
unsigned
long
v
;
v
=
(
unsigned
long
)
addr
[
0
];
v
|=
(
unsigned
long
)
addr
[
1
]
<<
8
;
v
|=
(
unsigned
long
)
addr
[
2
]
<<
16
;
v
|=
(
unsigned
long
)
addr
[
3
]
<<
24
;
return
(
bfd_vma
)
v
;
}
/* This file holds the Alpha AXP opcode table. The opcode table includes
almost all of the extended instruction mnemonics. This permits the
disassembler to use them, and simplifies the assembler logic, at the
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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