- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我一直在 Unix 操作系统、Minix 中编写硬件(鼠标、键盘等)程序,当系统提示我将其与 Assembly(AT&T 语法)结合使用时,我遇到了一些问题。
截至目前,我正在对键盘进行编程(获取和打印扫描码),并且我需要同时使用 C 和 ASM 来完成。我已经开发了可以正常工作的 C 函数,现在我必须用 ASM 函数替换 IH(中断处理程序),如下代码指定:(要替换的代码在函数“receiver_loop”中)
int timer_subscribe_int(void ) {
int temp = hook_id; //integer between 0 and 31
sys_irqsetpolicy(TIMER0_IRQ, IRQ_REENABLE,&hook_id); // returns a hook id that you can then use to enable and disable irqs.
sys_irqenable(&hook_id);
return temp;
}
int timer_unsubscribe_int() {
if (sys_irqrmpolicy(&hook_id)!= OK) return 1;
return 0;
}
void receiver_loop() {
int ipc_status,r, seconds = 0, running = 1;
message msg;
int shift = keyboard_subscribe_int();
int shift_timer;
if(timer_flag) shift_timer = timer_subscribe_int();
while(running && (seconds < time)) {
/* Get a request message. */
if ( driver_receive(ANY, &msg, &ipc_status) != 0 ) {
printf("driver_receive failed with: %d", r);
continue;
}
if (is_ipc_notify(ipc_status)) { /* received notification */
switch (_ENDPOINT_P(msg.m_source)) {
case HARDWARE: /* hardware interrupt notification */
if (msg.NOTIFY_ARG & BIT(shift)) { /* subscribed interrupt bit 1 fica a 1, logo é 1*/
// Handle interruption
/*Replace the following commented code with ASM function(s)
if(keyboard_int_handler()) running = 0;
else seconds = 0;
}
else if (msg.NOTIFY_ARG & BIT(shift_timer) && timer_flag) { // subscribed interrupt bit 1 fica a 1, logo é 1
//printf("\n Entrou aqui. Counter %d \n", counter);
timer_int_handler();
if (counter%60 == 0){
//as the frequency of interruptions is 60Hz as assumed, that means every 60 interrupts 1 second has passed
//so whatever is inside this if-block happens each second
seconds++; // increments the seconds counter
//printf("\n Segundos: %d \n", seconds);
};*/
}
break;
default:
break; /* no other notifications expected: do nothing */
}
} else { /* received a standard message, not a notification */
/* no standard messages expected: do nothing */
}
}
if(seconds >= time) {
printf("\nTimeout. Terminating...\n");
}
keyboard_unsubscribe_int();
timer_unsubscribe_int();
return;
}
这就是我到目前为止所得到的,老实说,我对如何从这里开始并获得类似的 ASM 函数来替换注释代码有点困惑。谁能帮帮我?
最佳答案
gcc 提供了一种获取 C 代码并输出相关汇编程序的简单方法。因此,如果您需要将一些 C 代码转换为汇编程序。一个简单的方法看起来像这样:
__attribute__((noinline))
标记这个例程以防止 gcc从将您的例程内联到其他例程中。虽然通常内联是一件好事,如果你正在尝试隔离特定代码,这不是您所需要的。gcc -S -o test.s
测试.c
。请注意,您可以(并且可能应该)打开优化(gcc -O2 -S -o test.s test.c
)。请注意,默认情况下,i386 上的输出将采用 att 格式。如果您更喜欢 intel 格式,可以使用 -masm=intel
。
关于c - ASM/C 中的中断处理程序 - 如何? -Minix,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26576172/
我需要处理来自旧 Mac 时代(旧摩托罗拉 CPU)的文件。字节是大端字节序,所以我有一个函数可以将 Int64 交换为英特尔小端字节序。该函数是 ASM,可在 32 位 CPU 上运行,但不能在 6
1.概述 转载:史上最通俗易懂的ASM教程 一勺思想 We are all in the gutter, but some of us are looking at the stars. (我们都生活
1.概述 转载:ASM 与 Presto 动态代码生成简介 代码生成是很多计算引擎中常用的执行优化技术,比如我们熟悉的 Apache Spark 和 Presto 在表达式等地方就使用到代码生成技术。
我想在 C++ 程序中使用 ASM 调用地址为 774a7fdch 的函数(kernel32.dll 函数) 我正在使用 Visual Studio 2010。 我该怎么做? call 774a7fd
我是否正确转换了它? 原始 VS C++ 版本: _TEB *pTeb = NULL; _asm { mov eax, fs:[0x18];
阅读自howto_add_systemcall "In general, header files for machine architecture independent system calls
在实现无锁数据结构和时序代码时,通常需要抑制编译器的优化。通常人们使用 asm volatile 和 clobber 列表中的 memory 来执行此操作,但有时您只会看到 asm volatile
这个“strcpy”函数的目的是将src的内容复制到dest,结果很好:显示两行“Hello_src”。 #include static inline char * strcpy(char * de
我正在尝试进行一些汇编编码,我从 C 语言调用函数。代码本身运行良好,但我有两个巨大的问题在很长一段时间内无法解决。第一个是语法高亮 - 我安装了两个不同的(当时一个)asm 高亮扩展到 Visual
我正在研究一些类文件分析,并且正在研究使用 ASM 来读取类。在 Javap 中,操作码以及 tagName 和 tagValue 是内联打印的,但在每个 AbstractInsnNode 中,我只看
我正在尝试弄清楚如何将 ASM 中的 DB 变量用于内联 ASM C++ 我有这个 ASM 代码: filename db "C:\imagen.bmp" eti0: mov ah,3dh mov a
这个“strcpy”函数的目的是将src的内容复制到dest,结果很好:显示两行“Hello_src”。 #include static inline char * strcpy(char * de
在 mm/memory.c 中,它包含一个文件: #include tlb.h 是 include/asm-generic/tlb.h或 arch/arm/include/asm/tlb.h ? 最
你好我找到了一个asm代码......它被集成到c++项目中 template T returned; BYTE *tem = buffer; __asm { mov eax, tem
问题:当我运行 @ 命令提示符 >tasm HelloWorld.asm 顺便说一句,我在输入文件名 HelloWorld.asm 时使用 TAB,所以没有错字.我收到这个致命的命令行错误: Turb
尝试通过 eax 从 asm proc 返回一个 long int,后来又尝试通过 dx:ax。两者都不适合我,因为 C printf 打印的数字与所需的 320L 不同。 x.asm: .model
这是 godbolt 生成的代码. 下面是 Visual Studio 在我的 main.asm 文件上生成的相同代码(通过 Project->C/C++->Output Files->Assembl
在构建具有依赖项的 giraph jar 时,我们收到以下警告.. 真的不知道如何解决这些.. 我们已经尝试过了 useProjectArtifact 为 false 和 解压为真 两者似乎都有效 任
我正在使用 gentoo 并尝试编译一个程序来控制并行端口上的位。它的顶部附近有这条线: #include 当我尝试在其上使用 gcc 时,它会产生以下输出: port.c:4:20: error:
(原帖)将 hibernate 依赖项添加到 pom.xml 时显示错误 2011-10-11 10:36:53.710::WARN: failed guiceFilter java.lang.No
我是一名优秀的程序员,十分优秀!