Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
9d0baba1
Q
qemu
项目概览
openeuler
/
qemu
通知
10
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Q
qemu
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
9d0baba1
编写于
9月 08, 2011
作者:
A
Anthony Liguori
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'stefanha/trivial-patches' into staging
上级
a60fce0b
9f4facbc
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
9 addition
and
8 deletion
+9
-8
hw/sh_intc.c
hw/sh_intc.c
+5
-4
libcacard/Makefile
libcacard/Makefile
+1
-1
target-i386/op_helper.c
target-i386/op_helper.c
+3
-3
未找到文件。
hw/sh_intc.c
浏览文件 @
9d0baba1
...
...
@@ -382,13 +382,14 @@ void sh_intc_register_sources(struct intc_desc *desc,
sh_intc_register_source
(
desc
,
vect
->
enum_id
,
groups
,
nr_groups
);
s
=
sh_intc_source
(
desc
,
vect
->
enum_id
);
if
(
s
)
s
->
vect
=
vect
->
vect
;
if
(
s
)
{
s
->
vect
=
vect
->
vect
;
#ifdef DEBUG_INTC_SOURCES
printf
(
"sh_intc: registered source %d -> 0x%04x (%d/%d)
\n
"
,
vect
->
enum_id
,
s
->
vect
,
s
->
enable_count
,
s
->
enable_max
);
printf
(
"sh_intc: registered source %d -> 0x%04x (%d/%d)
\n
"
,
vect
->
enum_id
,
s
->
vect
,
s
->
enable_count
,
s
->
enable_max
);
#endif
}
}
if
(
groups
)
{
...
...
libcacard/Makefile
浏览文件 @
9d0baba1
...
...
@@ -56,7 +56,7 @@ install-libcacard: libcacard.pc libcacard.la vscclient
$(INSTALL_DIR)
"
$(DESTDIR)$(libcacard_includedir)
"
$(INSTALL_DIR)
"
$(DESTDIR)$(bindir)
"
$(LIBTOOL)
--mode
=
install
$(INSTALL_PROG)
vscclient
"
$(DESTDIR)$(bindir)
"
$(LIBTOOL)
--mode
=
install
$(INSTALL_
PROG
)
libcacard.la
"
$(DESTDIR)$(libdir)
"
$(LIBTOOL)
--mode
=
install
$(INSTALL_
DATA
)
libcacard.la
"
$(DESTDIR)$(libdir)
"
$(LIBTOOL)
--mode
=
install
$(INSTALL_DATA)
libcacard.pc
"
$(DESTDIR)$(libdir)
/pkgconfig"
for
inc
in
*
.h
;
do
\
$(LIBTOOL)
--mode
=
install
$(INSTALL_DATA)
$(libcacard_srcpath)
/
$$
inc
"
$(DESTDIR)$(libcacard_includedir)
"
;
\
...
...
target-i386/op_helper.c
浏览文件 @
9d0baba1
...
...
@@ -1970,20 +1970,20 @@ void helper_aas(void)
void
helper_daa
(
void
)
{
int
al
,
af
,
cf
;
int
old_al
,
al
,
af
,
cf
;
int
eflags
;
eflags
=
helper_cc_compute_all
(
CC_OP
);
cf
=
eflags
&
CC_C
;
af
=
eflags
&
CC_A
;
al
=
EAX
&
0xff
;
old_al
=
al
=
EAX
&
0xff
;
eflags
=
0
;
if
(((
al
&
0x0f
)
>
9
)
||
af
)
{
al
=
(
al
+
6
)
&
0xff
;
eflags
|=
CC_A
;
}
if
((
al
>
0x9f
)
||
cf
)
{
if
((
old_al
>
0x99
)
||
cf
)
{
al
=
(
al
+
0x60
)
&
0xff
;
eflags
|=
CC_C
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录