Subversion Repositories HelenOS-historic

Rev

Rev 960 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 960 Rev 1099
Line 35... Line 35...
35
   
35
   
36
    asm volatile (
36
    asm volatile (
37
        "int $0x30\n"
37
        "int $0x30\n"
38
        : "=a" (ret)
38
        : "=a" (ret)
39
        : "a" (p1),
39
        : "a" (p1),
40
          "b" (p2),
40
          "c" (p2),
41
          "c" (p3),
41
          "d" (p3),
42
          "d" (p4),
42
          "S" (p4),
43
          "S" (id)
43
          "D" (id)
44
    );
44
    );
45
   
45
   
46
    return ret;
46
    return ret;
47
}
47
}