1
2; int toupper(int c)
3
4SECTION code_clib
5SECTION code_ctype
6
7PUBLIC _toupper
8
9EXTERN _toupper_fastcall
10
11_toupper:
12
13   pop af
14   pop hl
15
16   push hl
17   push af
18
19   jp _toupper_fastcall
20