forked from KolibriOS/kolibrios
increase size of debug board from 4K to 64K
git-svn-id: svn://kolibrios.org@3392 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
4a4da537e6
commit
75ae4a827a
@ -4616,9 +4616,10 @@ sys_msg_board_dword:
|
|||||||
popad
|
popad
|
||||||
ret
|
ret
|
||||||
|
|
||||||
|
msg_board_data_size = 65536 ; Must be power of two
|
||||||
|
|
||||||
uglobal
|
uglobal
|
||||||
msg_board_data:
|
msg_board_data rb msg_board_data_size
|
||||||
times 4096 db 0
|
|
||||||
msg_board_count dd 0x0
|
msg_board_count dd 0x0
|
||||||
endg
|
endg
|
||||||
|
|
||||||
@ -4651,7 +4652,7 @@ end if
|
|||||||
|
|
||||||
mov [msg_board_data+ecx], bl
|
mov [msg_board_data+ecx], bl
|
||||||
inc ecx
|
inc ecx
|
||||||
and ecx, 4095
|
and ecx, msg_board_data_size - 1
|
||||||
mov [msg_board_count], ecx
|
mov [msg_board_count], ecx
|
||||||
mov [check_idle_semaphore], 5
|
mov [check_idle_semaphore], 5
|
||||||
ret
|
ret
|
||||||
|
Loading…
Reference in New Issue
Block a user