Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Show changed files | Directory listing | RSS feed

Filtering Options

Rev Age Author Path Log message Diff
7134 2290 d 21 h dunkaist /programs/ Remove some duplicates: proc32.inc, macros.inc, struct.inc, etc.  
6196 2968 d 11 h leency /programs/ system_colors: global rename and change meaning of "grab_button" to "work_3d_dark", and "grab_button_text" to "work_3d_light", the legacy of new_sys_colors table  
5098 3485 d 6 h clevermouse / switch build system to Tup  
3013 4157 d 12 h dunkaist /programs/ place debug.inc in /programs
delete all the other debug.inc files
correct some programs to use common debug.inc
 
1029 5524 d 15 h serge / move drivers from programs/system/drivers into /drivers  
805 5755 d 10 h Lrz /programs/ add library and example on C--  
477 6170 d 9 h Ghost / Fast calls
* multi thread program support
* MSR protect
* fast_call_test update
---------------------------
old code:
int 0x40

code for Intel SYSENTER:
push ebp
mov ebp, esp
push ..ret_point
sysenter
..ret_point:
pop edx
pop ecx

code for AMD SYSCALL:
push ecx
syscall
pop ecx

recommendation: use mcall from macros.inc
 
398 6231 d 8 h Ghost /programs/develop/fast_call_test/ Fast call demo program update  
375 6241 d 7 h Ghost / Fast System Call
Currently it only for kernel developing
See : http://meos.sysbin.com/viewtopic.php?t=662