1

我有一个任务要做,我正在寻求一些帮助。(在简单的 C 语言上)

我需要做什么?我需要检查主 c 程序上的每个命令(使用中断号 1)并仅在下一个命令与之前通过其他过程发送到堆栈的过程相同时打印一条消息。

我想做的事?我想使用内联汇编从堆栈中获取信息,并将其放在一个变量上,该变量可以在返回到 c 后在 c 程序本身上进行比较。(易挥发的)

这是程序:

#include <stdio.h>
#include <dos.h>
#include <conio.h>
#include <stdlib.h>

typedef void (*FUN_PTR)(void);
void interrupt (*Int1Save) (void); //pointer to interrupt num 1//

volatile FUN_PTR our_func;
char *str2;

void interrupt my_inter (void) //New interrupt//
{volatile FUN_PTR next_command;
asm {   PUSH BP
    MOV BP,SP
    PUSH AX
    PUSH BX
    PUSH ES
    MOV ES,[BP+4]           
    MOV BX,[BP+2] 
    MOV AX,ES:[BX]
    MOV word ptr next_command,AX  
    POP ES
    POP BX
    POP AX
    pop BP}
if (our_func==next_command) printf("procedure %s has been called\n",str2);}

void animate(int *iptr,char str[],void (*funptr)(), char fstr[])
{
str2=fstr;
our_func=funptr;

Int1Save = getvect(1); // save old interrupt//
setvect(1,my_inter); 
    asm {   pushf //TF is ON//
    pop ax
    or ax,100000000B
    push ax
    popf}}

void unanimate()
{asm {  pushf //TF is OFF//
        pop ax
        and ax,1111111011111111B
        push ax
        popf}
setvect (1,Int1Save); //restore old interrupt//}

void main(void)
{int i;
 int f1 = 1;
 int f2 = 1;
 int fibo = 1;

 animate(&fibo, "fibo", sleep, "sleep");
 for(i=0; i < 8; i++)
 {
  sleep(2);
  f1 = f2;
  f2 = fibo;
  fibo = f1 + f2;} // for//
 unanimate();} // main//

我的问题......当然,问题在于内联程序集的“我的中间”。但无法弄清楚。我究竟做错了什么?(请看上面的代码) 我想将特定过程(睡眠)的指针地址保存在 volatile our_func 中。然后从堆栈中获取信息(每个下一个命令的地址)到 volatile next_command,然后最终返回到 c 并每次进行比较。如果两个变量上的值(地址)相同,则打印特定消息。希望我清楚..

10倍,

尼尔B

4

1 回答 1

0

Answered as a comment by the OP

I got the answer I wanted:

asm {   MOV SI,[BP+18]  //Taking the address of each command//
        MOV DI,[BP+20]
        MOV word ptr next_command+2,DI
        MOV word ptr next_command,SI}
if ((*our_func)==(*next_command))   //Making the next_command compare//
    printf("procedure %s has been called\n",str2);
于 2014-06-18T07:30:09.003 回答