Skip to content

Commit

Permalink
x86emitter: miss comas here
Browse files Browse the repository at this point in the history
  • Loading branch information
gregory38 committed Mar 28, 2016
1 parent cb29585 commit de24ce0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/src/x86emitter/x86emitter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,15 +149,15 @@ const xRegisterCL cl;
const char *const x86_regnames_gpr8[] =
{
"al", "cl", "dl", "bl",
"ah", "ch", "dh", "bh"
"ah", "ch", "dh", "bh",
"b8", "b9", "b10", "b11",
"b12", "b13", "b14", "b15"
};

const char *const x86_regnames_gpr16[] =
{
"ax", "cx", "dx", "bx",
"sp", "bp", "si", "di"
"sp", "bp", "si", "di",
"h8", "h9", "h10", "h11",
"h12", "h13", "h14", "h15"
};
Expand Down

0 comments on commit de24ce0

Please sign in to comment.