eliza readme uploaded, mblocks trunk optimizations

git-svn-id: svn://kolibrios.org@2285 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Kirill Lipatov (Leency) 2011-10-11 12:44:51 +00:00
parent d8fd58b4f5
commit ba1dd02bde
4 changed files with 1982 additions and 24 deletions

View File

@ -0,0 +1,12 @@
Eliza 0.2
=================
Теперь эта классическая программа искусственного интеллекта есть и в KolibriOS.
=================
Александр Богомаз aka Albom
albom85@yandex.ru
http://albom06.boom.ru

File diff suppressed because it is too large Load Diff

View File

@ -258,37 +258,31 @@ first_click:
jmp @b jmp @b
draw_window: draw_window:
push 48 mov eax, 48
pop eax mov ebx, 3
push 3 mov ecx, color_table
pop ebx mov edx, 40
mov ecx, color_table int 0x40 ; get color table
push 4*10
pop edx mov eax, 12
int 0x40 ; get color table mov ebx, 1
push 12
pop eax
push 1
pop ebx
int 0x40 ; start redraw int 0x40 ; start redraw
push ebx
xor eax, eax xor eax, eax
mov ebx, 100*65536 + WindowWidth mov ebx, 100*65536 + WindowWidth
mov ecx, 100*65536 + WindowHeight mov ecx, 100*65536 + WindowHeight
add ecx, [SkinHeight] add ecx, [SkinHeight]
mov edx, 4C0C0C0h mov edx, 0x14C0C0C0
int 0x40 ; define window mov edi, caption
mov al, 71 int 0x40
pop ebx
mov ecx, caption
int 0x40 ; set caption
call draw_aux call draw_aux
call draw_field call draw_field
push 12
pop eax mov eax, 12
push 2 mov ebx, 2
pop ebx int 0x40 ; end redraw
int 0x40
ret ret
caption db 'Memory Blocks L&V Edition',0 caption db 'Memory Blocks L&V Edition',0