From 31a0fa2971b51bb3c2f38ce01606cc36f07854c3 Mon Sep 17 00:00:00 2001 From: maxcodehack Date: Sun, 8 Nov 2020 13:07:53 +0000 Subject: [PATCH] Revision in '/programs/develop/examples': replace 'FASM for Menuet' with 'FASM', meos_app_start -> KOS_APP_START git-svn-id: svn://kolibrios.org@8163 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/develop/examples/circle/trunk/circle.asm | 2 +- .../develop/examples/cpuspeed/trunk/cpuspeed.asm | 2 +- programs/develop/examples/editbox/trunk/editbox.asm | 6 +++--- .../develop/examples/example2/trunk/example2.asm | 2 +- programs/develop/examples/hello/trunk/hello.asm | 2 +- programs/develop/examples/ipc/trunk/ipc.asm | 2 +- programs/develop/examples/ir/trunk/ir.asm | 2 +- programs/develop/examples/rtdata/trunk/rtdata.asm | 2 +- .../develop/examples/template/trunk/template.asm | 12 ++++++------ programs/develop/examples/thread/trunk/thread.asm | 2 +- 10 files changed, 17 insertions(+), 17 deletions(-) diff --git a/programs/develop/examples/circle/trunk/circle.asm b/programs/develop/examples/circle/trunk/circle.asm index 52d6a827be..4356cd2801 100644 --- a/programs/develop/examples/circle/trunk/circle.asm +++ b/programs/develop/examples/circle/trunk/circle.asm @@ -1,7 +1,7 @@ ; ; SHAPED WINDOW - BASIC EXAMPLE ; -; Compile with FASM for Menuet +; Compile with FASM ; use32 diff --git a/programs/develop/examples/cpuspeed/trunk/cpuspeed.asm b/programs/develop/examples/cpuspeed/trunk/cpuspeed.asm index 73f0c9b847..b5393151b5 100644 --- a/programs/develop/examples/cpuspeed/trunk/cpuspeed.asm +++ b/programs/develop/examples/cpuspeed/trunk/cpuspeed.asm @@ -1,7 +1,7 @@ ; ; CPU SPEED INDICATIOR ; -; Compile with FASM for Menuet +; Compile with FASM ; use32 diff --git a/programs/develop/examples/editbox/trunk/editbox.asm b/programs/develop/examples/editbox/trunk/editbox.asm index d0f7f72191..b098696c93 100644 --- a/programs/develop/examples/editbox/trunk/editbox.asm +++ b/programs/develop/examples/editbox/trunk/editbox.asm @@ -5,7 +5,7 @@ ;заголовок приложения include '..\..\..\..\macros.inc' include 'editbox.inc' -meos_app_start +KOS_APP_START align 4 use_edit_box ;Область кода @@ -64,5 +64,5 @@ ed_buffer: ;два запасных байта необходимы для того что бы не пепереписать следующией байты, в конце буфера 0 buffer_end: align 16 -meos_app_end -udata \ No newline at end of file +KOS_APP_END +udata diff --git a/programs/develop/examples/example2/trunk/example2.asm b/programs/develop/examples/example2/trunk/example2.asm index 141a44ecbc..4821d71ccb 100644 --- a/programs/develop/examples/example2/trunk/example2.asm +++ b/programs/develop/examples/example2/trunk/example2.asm @@ -2,7 +2,7 @@ ; ; MENU / DIALOG EXAMPLE ; -; Compile with FASM for Menuet +; Compile with FASM ; use32 diff --git a/programs/develop/examples/hello/trunk/hello.asm b/programs/develop/examples/hello/trunk/hello.asm index 65f4b1941d..df82116038 100644 --- a/programs/develop/examples/hello/trunk/hello.asm +++ b/programs/develop/examples/hello/trunk/hello.asm @@ -1,5 +1,5 @@ ; Hello, World! - Programm example for CMD shell -; Compile with FASM for Menuet +; Compile with FASM ; ; You must run this program from CMD shell only ; diff --git a/programs/develop/examples/ipc/trunk/ipc.asm b/programs/develop/examples/ipc/trunk/ipc.asm index b06173f69d..30e1405bbc 100644 --- a/programs/develop/examples/ipc/trunk/ipc.asm +++ b/programs/develop/examples/ipc/trunk/ipc.asm @@ -1,7 +1,7 @@ ; ; Example for Inter Process Communication ; -; Compile with FASM for Menuet +; Compile with FASM ; include 'lang.inc' include '..\..\..\..\macros.inc' diff --git a/programs/develop/examples/ir/trunk/ir.asm b/programs/develop/examples/ir/trunk/ir.asm index 61306be323..b85b050c0c 100644 --- a/programs/develop/examples/ir/trunk/ir.asm +++ b/programs/develop/examples/ir/trunk/ir.asm @@ -1,7 +1,7 @@ ; ; INFRARED ; -; Compile with FASM for Menuet +; Compile with FASM ; use32 diff --git a/programs/develop/examples/rtdata/trunk/rtdata.asm b/programs/develop/examples/rtdata/trunk/rtdata.asm index d259e8917d..8441378a42 100644 --- a/programs/develop/examples/rtdata/trunk/rtdata.asm +++ b/programs/develop/examples/rtdata/trunk/rtdata.asm @@ -1,7 +1,7 @@ ; ; COMMUNICATING WITH MODEM: PORTS & IRQ ; -; Compile with FASM for Menuet +; Compile with FASM ; include "lang.inc" diff --git a/programs/develop/examples/template/trunk/template.asm b/programs/develop/examples/template/trunk/template.asm index e1843ea96c..d2b77e2ee7 100644 --- a/programs/develop/examples/template/trunk/template.asm +++ b/programs/develop/examples/template/trunk/template.asm @@ -5,15 +5,15 @@ ; last update: 1/03/2007 ; written by: Ivan Poddubny ; e-mail: ivan-yar@bk.ru -;modified by: Heavyiron +;modified by: Heavyiron, maxcodehack -; <--- include all MeOS stuff ---> +; <--- include all KolibriOS stuff ---> include "lang.inc" include "..\..\..\..\macros.inc" -; <--- start of MenuetOS application ---> -MEOS_APP_START +; <--- start of KolibriOS application ---> +KOS_APP_START ; <--- start of code ---> @@ -88,5 +88,5 @@ end if UDATA sc system_colors -MEOS_APP_END -; <--- end of MenuetOS application ---> \ No newline at end of file +KOS_APP_END +; <--- end of KolibriOS application ---> diff --git a/programs/develop/examples/thread/trunk/thread.asm b/programs/develop/examples/thread/trunk/thread.asm index b191ce004c..64ee763374 100644 --- a/programs/develop/examples/thread/trunk/thread.asm +++ b/programs/develop/examples/thread/trunk/thread.asm @@ -1,7 +1,7 @@ ; ; THREAD EXAMPLE ; -; Compile with FASM for Menuet +; Compile with FASM ; use32