2014-06-17 16:12:56 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
; DEBUG BOARD for APPLICATIONS and KERNEL DEVELOPMENT
|
|
|
|
|
; See f63
|
|
|
|
|
; Compile with FASM for KolibriOS
|
|
|
|
|
;------------------------------------------------------------------------------
|
2006-01-03 10:43:31 +01:00
|
|
|
|
include 'lang.inc'
|
2014-06-17 16:12:56 +02:00
|
|
|
|
WRITE_LOG equ 1
|
|
|
|
|
P_LEN equ 11
|
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
use32
|
|
|
|
|
org 0x0
|
|
|
|
|
db 'MENUET01'
|
|
|
|
|
dd 0x01
|
|
|
|
|
dd START
|
|
|
|
|
dd I_END
|
|
|
|
|
dd mem
|
|
|
|
|
dd mem
|
|
|
|
|
dd filename, 0x0
|
|
|
|
|
;------------------------------------------------------------------------------
|
2011-01-18 12:56:31 +01:00
|
|
|
|
include '../../../macros.inc'
|
2012-11-09 10:19:16 +01:00
|
|
|
|
include '../../../debug.inc'
|
2014-06-17 16:12:56 +02:00
|
|
|
|
purge newline
|
|
|
|
|
MAXSTRINGS = 16
|
2006-08-18 15:32:18 +02:00
|
|
|
|
TMP = 80*(MAXSTRINGS+1)
|
2011-09-23 06:14:41 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
2014-06-17 16:12:56 +02:00
|
|
|
|
START:
|
|
|
|
|
call CheckUnique
|
|
|
|
|
mov edi, filename
|
|
|
|
|
cmp [edi], byte 0
|
|
|
|
|
jnz param
|
|
|
|
|
mov esi, default_filename
|
|
|
|
|
@@:
|
|
|
|
|
lodsb
|
|
|
|
|
stosb
|
|
|
|
|
test al,al
|
|
|
|
|
jnz @b
|
|
|
|
|
param:
|
|
|
|
|
mov ecx, TMP
|
|
|
|
|
xor eax, eax
|
|
|
|
|
mov edi, [targ]
|
|
|
|
|
rep stosb
|
|
|
|
|
|
|
|
|
|
mov [tmp1], 'x'
|
|
|
|
|
mov [tmp2], 'x'
|
|
|
|
|
|
|
|
|
|
mcall 14
|
|
|
|
|
and eax, 0xffff0000
|
|
|
|
|
sub eax, 399 shl 16
|
|
|
|
|
add eax, 399
|
|
|
|
|
mov [xstart], eax
|
|
|
|
|
mcall 48, 3, sc, sizeof.sys_colors_new
|
|
|
|
|
|
|
|
|
|
mov esi, filename
|
|
|
|
|
call CreateFile
|
2011-09-23 06:14:41 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
red:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
call draw_window
|
2011-09-23 06:14:41 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
2006-01-03 10:43:31 +01:00
|
|
|
|
still:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
cmp [buffer_length], 0
|
|
|
|
|
je @f
|
|
|
|
|
call write_buffer
|
|
|
|
|
@@:
|
|
|
|
|
mcall 23, 50 ; wait here for event
|
|
|
|
|
cmp eax, 1 ; redraw request ?
|
|
|
|
|
je red
|
2006-01-03 10:43:31 +01:00
|
|
|
|
|
2014-06-17 16:12:56 +02:00
|
|
|
|
cmp eax, 2 ; key in buffer ?
|
|
|
|
|
je key
|
2010-08-17 23:40:33 +02:00
|
|
|
|
|
2014-06-17 16:12:56 +02:00
|
|
|
|
cmp eax, 3 ; button in buffer ?
|
|
|
|
|
je button
|
2010-08-17 23:40:33 +02:00
|
|
|
|
|
2014-06-17 16:12:56 +02:00
|
|
|
|
mcall 63, 2
|
|
|
|
|
cmp ebx, 1
|
|
|
|
|
jne still
|
2006-08-18 15:32:18 +02:00
|
|
|
|
|
2011-09-23 06:14:41 +02:00
|
|
|
|
new_data:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
cmp [buffer_length], 255
|
|
|
|
|
jne @f
|
|
|
|
|
call write_buffer
|
|
|
|
|
@@:
|
|
|
|
|
movzx ebx, byte[buffer_length]
|
|
|
|
|
mov [ebx+tmp], al
|
|
|
|
|
inc [buffer_length]
|
|
|
|
|
mov ebp, [targ]
|
|
|
|
|
.no4:
|
|
|
|
|
cmp al, 13
|
|
|
|
|
jne no13
|
|
|
|
|
and [ebp-8], dword 0
|
|
|
|
|
jmp new_check
|
2014-01-18 21:41:33 +01:00
|
|
|
|
;------------------------------------------
|
|
|
|
|
write_buffer:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
pusha
|
|
|
|
|
mov edx, tmp
|
|
|
|
|
movzx ecx, byte[buffer_length] ;1
|
|
|
|
|
mov esi, filename
|
|
|
|
|
.write_to_logfile:
|
|
|
|
|
call WriteToFile
|
|
|
|
|
cmp eax, 5
|
|
|
|
|
jne @f
|
|
|
|
|
mov esi, filename
|
|
|
|
|
mov [filepos], 0
|
|
|
|
|
call CreateFile
|
|
|
|
|
jnc .write_to_logfile
|
2011-09-23 06:14:41 +02:00
|
|
|
|
@@:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
movzx eax,byte[buffer_length]
|
|
|
|
|
add [filepos],eax
|
|
|
|
|
xor eax,eax
|
|
|
|
|
mov [buffer_length],al
|
|
|
|
|
popa
|
|
|
|
|
ret
|
2011-09-23 06:14:41 +02:00
|
|
|
|
;------------------------------------------
|
|
|
|
|
no13:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
cmp al, 10
|
|
|
|
|
jne no10
|
|
|
|
|
and [ebp-8], dword 0
|
|
|
|
|
inc dword [ebp-4]
|
|
|
|
|
cmp [ebp-4], dword MAXSTRINGS
|
|
|
|
|
jbe .noypos
|
|
|
|
|
mov [ebp-4], dword MAXSTRINGS
|
|
|
|
|
lea esi, [ebp+80]
|
|
|
|
|
mov edi, ebp
|
|
|
|
|
mov ecx, 80*(MAXSTRINGS)
|
|
|
|
|
cld
|
|
|
|
|
rep movsb
|
|
|
|
|
|
|
|
|
|
mov esi, [ebp-4]
|
|
|
|
|
imul esi, 80
|
|
|
|
|
add esi, [ebp-8]
|
|
|
|
|
add esi, ebp
|
|
|
|
|
mov ecx, 80
|
|
|
|
|
xor al , al
|
|
|
|
|
rep stosb
|
|
|
|
|
.noypos:
|
|
|
|
|
mov [targ],text2
|
|
|
|
|
and [krnl_cnt],0
|
|
|
|
|
jmp new_check
|
2011-09-23 06:14:41 +02:00
|
|
|
|
;------------------------------------------
|
|
|
|
|
no10:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
cmp ebp, text1
|
|
|
|
|
je add2
|
|
|
|
|
mov ecx, [krnl_cnt]
|
|
|
|
|
cmp al, [krnl_msg+ecx]
|
|
|
|
|
jne .noknl
|
|
|
|
|
inc [krnl_cnt]
|
|
|
|
|
cmp [krnl_cnt], 4
|
|
|
|
|
jne new_check
|
|
|
|
|
mov [targ], text1
|
|
|
|
|
.noknl:
|
|
|
|
|
mov ebp, [targ]
|
|
|
|
|
jecxz .add
|
|
|
|
|
push eax
|
|
|
|
|
mov esi, krnl_msg
|
|
|
|
|
.l1:
|
|
|
|
|
lodsb
|
|
|
|
|
call add_char
|
|
|
|
|
loop .l1
|
|
|
|
|
pop eax
|
|
|
|
|
.add:
|
|
|
|
|
and [krnl_cnt], 0
|
2011-09-23 06:14:41 +02:00
|
|
|
|
add2:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
call add_char
|
2011-09-23 06:14:41 +02:00
|
|
|
|
|
|
|
|
|
new_check:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
mcall 63, 2
|
|
|
|
|
cmp ebx, 1
|
|
|
|
|
je new_data
|
|
|
|
|
call draw_text
|
|
|
|
|
jmp still
|
2011-09-23 06:14:41 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
key:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
mcall 2
|
|
|
|
|
cmp ah, ' '
|
|
|
|
|
je button.noclose
|
|
|
|
|
jmp still
|
2011-09-23 06:14:41 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
button:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
mcall 17 ; get id
|
|
|
|
|
cmp ah, 1 ; button id=1 ?
|
|
|
|
|
jne .noclose
|
|
|
|
|
or eax, -1 ; close this program
|
|
|
|
|
mcall
|
|
|
|
|
.noclose:
|
|
|
|
|
xor [vmode], 1
|
|
|
|
|
jmp red
|
2011-09-23 06:14:41 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
2006-08-18 15:32:18 +02:00
|
|
|
|
add_char:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
push esi
|
|
|
|
|
mov esi, [ebp-4]
|
|
|
|
|
imul esi, 80
|
|
|
|
|
add esi, [ebp-8]
|
|
|
|
|
mov [ebp+esi], al
|
|
|
|
|
inc dword[ebp-8]
|
|
|
|
|
cmp dword[ebp-8], 80
|
|
|
|
|
jb .ok
|
|
|
|
|
mov dword[ebp-8], 79
|
2011-09-23 06:14:41 +02:00
|
|
|
|
.ok:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
pop esi
|
|
|
|
|
ret
|
2014-04-22 19:32:55 +02:00
|
|
|
|
|
2011-09-23 06:14:41 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
2014-06-17 16:12:56 +02:00
|
|
|
|
;************************ WINDOW DEFINITIONS AND DRAW ************************
|
|
|
|
|
;------------------------------------------------------------------------------
|
2006-01-03 10:43:31 +01:00
|
|
|
|
draw_window:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
mcall 12, 1 ; 1, start of draw
|
|
|
|
|
mcall 48, 5 ; GetClientTop
|
|
|
|
|
shr ebx, 16
|
|
|
|
|
mov ecx, ebx
|
|
|
|
|
shl ecx, 16
|
|
|
|
|
add ecx, MAXSTRINGS*10+45 ; [y start] *65536 + [y size]
|
|
|
|
|
xor eax, eax ; function 0 : define and draw window
|
|
|
|
|
mov edx, 0xffffff
|
|
|
|
|
or edx, 0x14000000
|
|
|
|
|
xor esi, esi
|
|
|
|
|
mcall ,[xstart],,,,title
|
|
|
|
|
mov ebx, 296 shl 16+31
|
|
|
|
|
mcall 8,,<4,13>,3,[sc.btn_face]
|
|
|
|
|
mov edx, [vmode]
|
|
|
|
|
lea edx, [edx*4+duk]
|
|
|
|
|
mcall 4,<300,7>,,,4
|
|
|
|
|
call draw_text
|
|
|
|
|
mcall 12, 2 ; 2, end of draw
|
|
|
|
|
ret
|
2011-09-23 06:14:41 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
draw_text:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
mov ebx, 15*65536+30 ; draw info text with function 4
|
|
|
|
|
xor ecx, ecx
|
|
|
|
|
or ecx, 0x40000000
|
|
|
|
|
mov edi, 0xffffff
|
|
|
|
|
mov edx, text1
|
|
|
|
|
cmp [vmode], 0
|
|
|
|
|
je .kern
|
|
|
|
|
mov edx, text2
|
|
|
|
|
.kern:
|
|
|
|
|
push ebx ecx edx
|
|
|
|
|
mcall 9, procinfo,-1
|
|
|
|
|
mov eax, [ebx+42]
|
|
|
|
|
xor edx, edx
|
|
|
|
|
mov ebx, 6
|
|
|
|
|
div ebx
|
|
|
|
|
pop edx ecx ebx
|
|
|
|
|
mov esi, 80
|
|
|
|
|
cmp eax, esi
|
|
|
|
|
ja @f
|
|
|
|
|
mov esi, eax
|
2011-09-23 06:14:41 +02:00
|
|
|
|
@@:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
cmp esi, 5
|
|
|
|
|
ja @f
|
|
|
|
|
mov esi, 5
|
2011-09-23 06:14:41 +02:00
|
|
|
|
@@:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
sub esi, 4
|
|
|
|
|
mov eax, 4
|
2011-09-23 06:14:41 +02:00
|
|
|
|
newline:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
mcall
|
|
|
|
|
add ebx, 10
|
|
|
|
|
add edx, 80
|
|
|
|
|
cmp [edx], byte 'x'
|
|
|
|
|
jne newline
|
|
|
|
|
ret
|
2010-08-17 23:40:33 +02:00
|
|
|
|
|
2014-06-17 16:12:56 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
;* input: esi = pointer to the file name *
|
|
|
|
|
;------------------------------------------------------------------------------
|
2010-08-17 23:40:33 +02:00
|
|
|
|
CreateFile:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
pusha
|
|
|
|
|
mov dword [InfoStructure+00], 2 ; create file
|
|
|
|
|
mov dword [InfoStructure+04], 0 ; reserved
|
|
|
|
|
mov dword [InfoStructure+08], 0 ; reserved
|
|
|
|
|
mov dword [InfoStructure+12], 0 ; 0 bytes to write (just create)
|
|
|
|
|
mov dword [InfoStructure+16], 0 ; NULL data pointer (no data)
|
|
|
|
|
mov dword [InfoStructure+20], 0 ; reserved
|
|
|
|
|
mov dword [InfoStructure+21], esi ; pointer to the file name
|
|
|
|
|
mcall 70, InfoStructure
|
|
|
|
|
test eax, eax
|
|
|
|
|
jz .out
|
|
|
|
|
stc
|
|
|
|
|
.out:
|
|
|
|
|
popa
|
|
|
|
|
ret
|
|
|
|
|
;------------------------------------------------------------------------------
|
2010-08-17 23:40:33 +02:00
|
|
|
|
;* input: esi = pointer to the file name *
|
|
|
|
|
;* edx = pointer to data buffer *
|
|
|
|
|
;* ecx = data length *
|
2014-06-17 16:12:56 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
2010-08-17 23:40:33 +02:00
|
|
|
|
WriteToFile:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
push ebx
|
|
|
|
|
mov dword [InfoStructure+00], 3 ; write to file
|
|
|
|
|
mov eax, [filepos]
|
|
|
|
|
mov dword [InfoStructure+04], eax ; lower position addr
|
|
|
|
|
mov dword [InfoStructure+08], 0 ; upper position addr (0 for FAT)
|
|
|
|
|
mov dword [InfoStructure+12], ecx ; number of bytes to write
|
|
|
|
|
mov dword [InfoStructure+16], edx ; pointer to data buffer
|
|
|
|
|
mov dword [InfoStructure+20], 0 ; reserved
|
|
|
|
|
mov dword [InfoStructure+21], esi ; pointer to the file name
|
|
|
|
|
mcall 70, InfoStructure
|
|
|
|
|
clc
|
|
|
|
|
test eax, eax
|
|
|
|
|
jz .out
|
|
|
|
|
stc
|
|
|
|
|
.out:
|
|
|
|
|
pop ebx
|
|
|
|
|
ret
|
2014-03-21 16:11:12 +01:00
|
|
|
|
|
2014-06-17 16:12:56 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
2014-03-21 16:11:12 +01:00
|
|
|
|
;* input: esi = pointer to string *
|
|
|
|
|
;* edi = pointer to string *
|
|
|
|
|
;* ecx = data length *
|
2014-06-17 16:12:56 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
2014-03-21 16:11:12 +01:00
|
|
|
|
StrCmp:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
repe cmpsb
|
|
|
|
|
ja .a_greater_b
|
|
|
|
|
jb .a_less_b
|
|
|
|
|
.equal:
|
|
|
|
|
mov eax, 0
|
|
|
|
|
jmp .end
|
|
|
|
|
.a_less_b:
|
|
|
|
|
mov eax, 1
|
|
|
|
|
jmp .end
|
|
|
|
|
.a_greater_b:
|
|
|
|
|
mov eax, -1
|
|
|
|
|
.end:
|
|
|
|
|
ret
|
2014-03-21 16:11:12 +01:00
|
|
|
|
|
2014-06-17 16:12:56 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
;* input: edi = pointer to string *
|
|
|
|
|
;* ecx = data length *
|
|
|
|
|
;------------------------------------------------------------------------------
|
2014-03-21 16:11:12 +01:00
|
|
|
|
; 'a' - 'A' = 32 -> 'A'|32 = 'a'
|
|
|
|
|
ToLower:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
xor eax, eax
|
2014-03-21 16:11:12 +01:00
|
|
|
|
.cycle:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
or byte[edi+eax], 32
|
|
|
|
|
inc eax
|
|
|
|
|
loop .cycle
|
2014-03-21 16:11:12 +01:00
|
|
|
|
.end:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
ret
|
2014-03-21 16:11:12 +01:00
|
|
|
|
|
2014-06-17 16:12:56 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
;* get info on current thread, save pid/tid
|
|
|
|
|
;* look for another process with same name and different pid/tid
|
|
|
|
|
;* if found, close self
|
|
|
|
|
;* else continue normally
|
|
|
|
|
;------------------------------------------------------------------------------
|
2014-03-21 16:11:12 +01:00
|
|
|
|
CheckUnique:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
.get_thread_info:
|
|
|
|
|
mov ebx, procinfo
|
|
|
|
|
mov ecx, -1
|
|
|
|
|
mcall 9
|
|
|
|
|
|
|
|
|
|
.get_pid: ; check_buffer
|
|
|
|
|
mov [process_count], eax
|
|
|
|
|
mov eax, [ebx+process_information.PID]
|
|
|
|
|
mov [pid_tid], eax
|
|
|
|
|
mov ecx, 2
|
|
|
|
|
|
|
|
|
|
.check_threads:
|
|
|
|
|
cmp ecx, [process_count]
|
|
|
|
|
ja .leave_check
|
|
|
|
|
mov eax, 9
|
|
|
|
|
mcall
|
|
|
|
|
|
|
|
|
|
.check_slot_free:
|
|
|
|
|
cmp dword [ebx+process_information.slot_state], 9
|
|
|
|
|
je .next_thread
|
|
|
|
|
|
|
|
|
|
.check_pid:
|
|
|
|
|
mov eax, [pid_tid]
|
|
|
|
|
cmp [ebx+process_information.PID], eax
|
|
|
|
|
je .next_thread
|
|
|
|
|
|
|
|
|
|
.get_proc_name:
|
|
|
|
|
lea edi, [ebx+process_information.process_name]
|
|
|
|
|
push ecx
|
|
|
|
|
mov ecx, my_name_size-1
|
|
|
|
|
|
|
|
|
|
.lower_case:
|
|
|
|
|
call ToLower
|
|
|
|
|
lea esi, [my_name]
|
|
|
|
|
mov ecx, my_name_size
|
|
|
|
|
call StrCmp
|
|
|
|
|
pop ecx
|
|
|
|
|
cmp eax, 0
|
|
|
|
|
je .close_program
|
|
|
|
|
|
|
|
|
|
.next_thread:
|
|
|
|
|
inc ecx
|
|
|
|
|
jmp .check_threads
|
|
|
|
|
|
|
|
|
|
.close_program:
|
|
|
|
|
; restore and active window of previous thread
|
|
|
|
|
mcall 18, 3
|
|
|
|
|
mov eax, -1
|
|
|
|
|
mcall
|
|
|
|
|
|
|
|
|
|
.leave_check:
|
|
|
|
|
ret
|
2014-03-21 16:11:12 +01:00
|
|
|
|
|
|
|
|
|
|
2014-06-17 16:12:56 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
;*********************************** DATA ************************************
|
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
align 4
|
2010-08-17 23:40:33 +02:00
|
|
|
|
InfoStructure:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
dd 0x0 ; subfunction number
|
|
|
|
|
dd 0x0 ; position in the file in bytes
|
|
|
|
|
dd 0x0 ; upper part of the position address
|
|
|
|
|
dd 0x0 ; number of bytes to read
|
|
|
|
|
dd 0x0 ; pointer to the buffer to write data
|
|
|
|
|
db 0x0
|
|
|
|
|
dd 0x0 ; pointer to the filename
|
|
|
|
|
filepos dd 0x0
|
2011-07-05 13:50:10 +02:00
|
|
|
|
default_filename db '/sys/boardlog.txt',0
|
2011-09-23 06:14:41 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
2006-01-03 10:43:31 +01:00
|
|
|
|
if lang eq ru
|
2011-09-23 06:14:41 +02:00
|
|
|
|
title db '<27><>᪠ <20>⫠<EFBFBD><E2ABA0><EFBFBD> <20> ᮮ<>饭<EFBFBD><E9A5AD>',0
|
2013-06-01 20:52:46 +02:00
|
|
|
|
else if lang eq it
|
|
|
|
|
title db 'Notifiche e informazioni generiche per il debug',0
|
|
|
|
|
else if lang eq ge
|
2011-09-23 06:14:41 +02:00
|
|
|
|
title db 'Allgemeines debug- & nachrichtenboard',0
|
2013-06-01 20:52:46 +02:00
|
|
|
|
else
|
|
|
|
|
title db 'General debug & message board',0
|
2006-01-03 10:43:31 +01:00
|
|
|
|
end if
|
2014-06-17 16:12:56 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
krnl_msg db 'K : '
|
|
|
|
|
duk db 'KernUser'
|
|
|
|
|
krnl_cnt dd 0
|
|
|
|
|
vmode dd 1
|
|
|
|
|
targ dd text2
|
|
|
|
|
my_name db 'board',0
|
|
|
|
|
my_name_size = $-my_name
|
|
|
|
|
process_count dd 0x0
|
|
|
|
|
pid_tid dd 0x0
|
2011-09-23 06:14:41 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
2006-01-03 10:43:31 +01:00
|
|
|
|
I_END:
|
2011-09-23 06:14:41 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
2014-06-17 16:12:56 +02:00
|
|
|
|
offs dd ?
|
|
|
|
|
flag rb 1
|
|
|
|
|
rd 2
|
|
|
|
|
text1 rb 80*(MAXSTRINGS+1)
|
|
|
|
|
tmp1 db ?
|
|
|
|
|
rd 2
|
|
|
|
|
text2 rb 80*(MAXSTRINGS+1)
|
|
|
|
|
tmp2 db ?
|
|
|
|
|
xstart dd ?
|
|
|
|
|
sc sys_colors_new
|
2006-08-18 15:32:18 +02:00
|
|
|
|
i_end:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
buffer_length rb 1
|
2014-01-18 21:41:33 +01:00
|
|
|
|
;------------------------------------------------------------------------------
|
2014-06-17 16:12:56 +02:00
|
|
|
|
tmp rb 256
|
|
|
|
|
filename rb 256
|
2013-06-01 20:52:46 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
2011-09-23 06:14:41 +02:00
|
|
|
|
align 4
|
|
|
|
|
procinfo:
|
2014-06-17 16:12:56 +02:00
|
|
|
|
rb 1024
|
2013-06-01 20:52:46 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
2011-07-05 14:10:36 +02:00
|
|
|
|
align 4
|
2014-06-17 16:12:56 +02:00
|
|
|
|
stackbuf rb 2000h
|
2011-09-23 06:14:41 +02:00
|
|
|
|
;------------------------------------------------------------------------------
|
2014-03-21 16:11:12 +01:00
|
|
|
|
mem:
|