Subversion Repositories Kolibri OS

Rev

Rev 214 | Rev 227 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;;                                                            ;;
  3. ;; KERNEL32.INC                                               ;;
  4. ;;                                                            ;;
  5. ;; Included 32 bit kernel files for MenuetOS                  ;;
  6. ;;                                                            ;;
  7. ;; This file is kept separate as it will be easier to         ;;
  8. ;; maintain and compile with an automated SETUP program       ;;
  9. ;; in the future.                                             ;;
  10. ;;                                                            ;;
  11. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  12.  
  13. ; structure definition helper
  14. macro struct name, [arg]
  15.  {
  16.   common
  17.    name@struct equ name
  18.    struc name arg {
  19.  }
  20.  
  21. macro struct_helper name
  22.  {
  23.   match xname,name
  24.   \{
  25.    virtual at 0
  26.    xname xname
  27.    sizeof.#xname = $ - xname
  28.    name equ sizeof.#xname
  29.    end virtual
  30.   \}
  31.  }
  32.  
  33. ends fix } struct_helper name@struct
  34.  
  35. ;// mike.dld, 2006-29-01 [
  36.  
  37. ; macros definition
  38. macro diff16 title,l1,l2
  39. {
  40.   local s,d
  41.   s = l2-l1
  42.   display title,': 0x'
  43.   repeat 8
  44.     d = 48 + s shr ((8-%) shl 2) and $0F
  45.     if d > 57
  46.       d = d + 65-57-1
  47.     end if
  48.     display d
  49.   end repeat
  50.   display 13,10
  51. }
  52.  
  53. ; \begin{diamond}[29.09.2006]
  54. ; may be useful for kernel debugging
  55. ; example 1:
  56. ;       dbgstr 'Hello, World!'
  57. ; example 2:
  58. ;       dbgstr 'Hello, World!', save_flags
  59. macro dbgstr string*, f
  60. {
  61. local a
  62. iglobal_nested
  63. a db 'K : ',string,13,10,0
  64. endg_nested
  65. if ~ f eq
  66.         pushfd
  67. end if
  68.         push    esi
  69.         mov     esi, a
  70.         call    sys_msg_board_str
  71.         pop     esi
  72. if ~ f eq
  73.         popfd
  74. end if
  75. }
  76. ; \end{diamond}[29.09.2006]
  77.  
  78. struc db [a] { common . db a
  79.   if ~used .
  80.     display 'not used db: ',`.,13,10
  81.   end if }
  82. struc dw [a] { common . dw a
  83.   if ~used .
  84.     display 'not used dw: ',`.,13,10
  85.   end if }
  86. struc dd [a] { common . dd a
  87.   if ~used .
  88.     display 'not used dd: ',`.,13,10
  89.   end if }
  90. struc dp [a] { common . dp a
  91.   if ~used .
  92.     display 'not used dp: ',`.,13,10
  93.   end if }
  94. struc dq [a] { common . dq a
  95.   if ~used .
  96.     display 'not used dq: ',`.,13,10
  97.   end if }
  98. struc dt [a] { common . dt a
  99.   if ~used .
  100.     display 'not used dt: ',`.,13,10
  101.   end if }
  102.  
  103. struc RECT {
  104.   .left   dd ?
  105.   .top    dd ?
  106.   .right  dd ?
  107.   .bottom dd ?
  108. }
  109. virtual at 0
  110.  RECT RECT
  111. end virtual
  112.  
  113. struc BOX {
  114.   .left   dd ?
  115.   .top    dd ?
  116.   .width  dd ?
  117.   .height dd ?
  118. }
  119. virtual at 0
  120.  BOX BOX
  121. end virtual
  122.  
  123. ; constants definition
  124. WSTATE_NORMAL    = 00000000b
  125. WSTATE_MAXIMIZED = 00000001b
  126. WSTATE_MINIMIZED = 00000010b
  127. WSTATE_ROLLEDUP  = 00000100b
  128.  
  129. WSTATE_REDRAW    = 00000001b
  130. WSTATE_WNDDRAWN  = 00000010b
  131.  
  132. WSTYLE_HASCAPTION     = 00010000b
  133. WSTYLE_CLIENTRELATIVE = 00100000b
  134.  
  135. struc TASKDATA
  136. {
  137.   .event_mask  dd ?
  138.   .pid         dd ?
  139.                dw ?
  140.   .state       db ?
  141.                db ?
  142.                dw ?
  143.   .wnd_number  db ?
  144.                db ?
  145.   .mem_start   dd ?
  146.   .counter_sum dd ?
  147.   .counter_add dd ?
  148.   .cpu_usage   dd ?
  149. }
  150. virtual at 0
  151.  TASKDATA TASKDATA
  152. end virtual
  153.  
  154. ; structures definition
  155. struc WDATA {
  156.   .box             BOX
  157.   .cl_workarea     dd ?
  158.   .cl_titlebar     dd ?
  159.   .cl_frames       dd ?
  160.   .reserved        db ?
  161.   .fl_wstate       db ?
  162.   .fl_wdrawn       db ?
  163.   .fl_redraw       db ?
  164. }
  165. virtual at 0
  166.  WDATA WDATA
  167. end virtual
  168. label WDATA.fl_wstyle byte at 0x13
  169.  
  170. struc APPDATA
  171. {
  172.   .app_name        db 11  dup(?)
  173.                    db 5   dup(?)
  174.  
  175.   .fpu_state       dd ?            ;+16
  176.                    dd ?            ;+20 unused
  177.   .fpu_handler     dd ?            ;+24
  178.   .sse_handler     dd ?            ;+28
  179.   .event           dd ?            ;+32
  180.   .heap_base       dd ?            ;+36
  181.   .heap_top        dd ?            ;+40
  182.   .cursor          dd ?            ;+44
  183.  
  184.                    db 80 dup(?)    ;+48
  185.  
  186.   .wnd_shape       dd ?            ;+128
  187.   .wnd_shape_scale dd ?
  188.                    dd ?
  189.   .mem_size        dd ?
  190.   .saved_box       BOX
  191.   .ipc_start       dd ?
  192.   .ipc_size        dd ?
  193.   .event_mask      dd ?
  194.   .debugger_slot   dd ?
  195.                    dd ?
  196.   .keyboard_mode   db ?
  197.                    db 3   dup(?)
  198.   .dir_table       dd ?
  199.   .dbg_event_mem   dd ?
  200.   .dbg_regs:
  201.   .dbg_regs.dr0    dd ?
  202.   .dbg_regs.dr1    dd ?
  203.   .dbg_regs.dr2    dd ?
  204.   .dbg_regs.dr3    dd ?
  205.   .dbg_regs.dr7    dd ?
  206.   .wnd_caption     dd ?
  207.   .wnd_clientbox   BOX
  208. }
  209. virtual at 0
  210.  APPDATA APPDATA
  211. end virtual
  212.  
  213. ;// mike.dld, 2006-29-01 ]
  214.  
  215.  
  216. ; Core functions
  217. include "core/sync.inc"     ; macros for synhronization objects
  218. include "core/sys32.inc"    ; process management
  219. include "core/sched.inc"    ; process scheduling
  220. include "core/syscall.inc"  ; system call
  221. include "core/fpu.inc"      ; all fpu/sse support
  222. include "core/memory.inc"
  223. include "core/heap.inc"     ; kernel and app heap
  224. include "core/taskman.inc"
  225. include "core/dll.inc"
  226. include "core/exports.inc"
  227.  
  228. ; GUI stuff
  229. include "gui/window.inc"
  230. include "gui/event.inc"
  231. include "gui/font.inc"
  232. include "gui/button.inc"
  233.  
  234. ; shutdown
  235.  
  236. include "boot/shutdown.inc" ; shutdown or restart
  237.  
  238. ; file system
  239.  
  240. include "fs/fs.inc"       ; syscall
  241. include "fs/fat32.inc"    ; read / write for fat32 filesystem
  242. include "fs/fat12.inc"    ; read / write for fat12 filesystem
  243. include "blkdev/rd.inc"   ; ramdisk read /write
  244. include "fs/fs_lfn.inc"    ; syscall, version 2
  245. include "fs/iso9660.inc"  ; read for iso9660 filesystem CD
  246.  
  247. ; sound
  248.  
  249. include "sound/sb16.inc"     ; playback for Sound Blaster 16
  250. include "sound/playnote.inc" ; player Note for Speaker PC
  251.  
  252. ; display
  253.  
  254. include "video/vesa12.inc"   ; Vesa 1.2 functions
  255. include "video/vesa20.inc"   ; Vesa 2.0 functions
  256. include "video/vga.inc"      ; VGA 16 color functions
  257. include "video/cursors.inc"  ; cursors functions
  258.  
  259. ; Network Interface & TCPIP Stack
  260.  
  261. include "network/stack.inc"
  262.  
  263. ; Mouse pointer
  264.  
  265. include "gui/mouse.inc"
  266.  
  267. ; Window skinning
  268.  
  269. include "gui/skincode.inc"
  270.  
  271. ; Pci functions
  272.  
  273. include "bus/pci/pci32.inc"
  274.  
  275. ; Floppy drive controller
  276.  
  277. include "blkdev/fdc.inc"
  278. include "blkdev/flp_drv.inc"
  279.  
  280. ; HD drive controller
  281. include "blkdev/hd_drv.inc"
  282.  
  283. ; CD drive controller
  284.  
  285. include "blkdev/cdrom.inc"
  286. include "blkdev/cd_drv.inc"
  287.  
  288. ; Character devices
  289.  
  290. include "hid/keyboard.inc"
  291. include "hid/mousedrv.inc"
  292.  
  293. ; setting date,time,clock and alarm-clock
  294.  
  295. include "hid/set_dtc.inc"
  296.  
  297. ;% -include
  298.