source:
trunk/minix/lib/ack/i386/em/em_rck.s@
13
| Last change on this file since 13 was 9, checked in by , 15 years ago | |
|---|---|
| File size: 314 bytes | |
| Rev | Line | |
|---|---|---|
| [9] | 1 | .sect .text; .sect .rom; .sect .data; .sect .bss |
| 2 | .sect .text | |
| 3 | .define .rck | |
| 4 | ||
| 5 | ! descriptor address in ebx | |
| 6 | ! value in eax, must be left there | |
| 7 | .rck: | |
| 8 | cmp eax,(ebx) | |
| 9 | jl 2f | |
| 10 | cmp eax,4(ebx) | |
| 11 | jg 2f | |
| 12 | ret | |
| 13 | 2: | |
| 14 | push eax | |
| 15 | .extern ERANGE | |
| 16 | .extern .error | |
| 17 | mov eax,ERANGE | |
| 18 | call .error | |
| 19 | pop eax | |
| 20 | ret |
Note:
See TracBrowser
for help on using the repository browser.