Subversion Repositories Kolibri OS

Rev

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

Rev 1693 Rev 2827
Line 66... Line 66...
66
 
66
 
Line 67... Line 67...
67
//    __asm__("int3");
67
//    __asm__("int3");
68
 
68
 
69
    __asm__ __volatile__(
69
    __asm__ __volatile__(
70
    "int $0x40"
70
    "int $0x40"
71
    :"=eax"(val)
71
    :"=a"(val)
72
    :"a"(68),"b"(12),"c"(size));
72
    :"a"(68),"b"(12),"c"(size));
Line 73... Line 73...
73
    return val;
73
    return val;
Line 80... Line 80...
80
 
80
 
Line 81... Line 81...
81
//    __asm__("int3");
81
//    __asm__("int3");
82
 
82
 
83
    __asm__ __volatile__(
83
    __asm__ __volatile__(
84
    "int $0x40"
84
    "int $0x40"
85
    :"=eax"(val)
85
    :"=a"(val)
86
    :"a"(68),"b"(13),"c"(mem));
86
    :"a"(68),"b"(13),"c"(mem));