Subversion Repositories Kolibri OS

Rev

Rev 1151 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1065 Lrz 1
; Copyright (c) 2009, 
2
; All rights reserved.
3
;
4
; Redistribution and use in source and binary forms, with or without
5
; modification, are permitted provided that the following conditions are met:
6
;       * Redistributions of source code must retain the above copyright
7
;       notice, this list of conditions and the following disclaimer.
8
;       * Redistributions in binary form must reproduce the above copyright
9
;       notice, this list of conditions and the following disclaimer in the
10
;       documentation and/or other materials provided with the distribution.
11
;       * Neither the name of the  nor the
12
;       names of its contributors may be used to endorse or promote products
13
;       derived from this software without specific prior written permission.
14
;
15
; THIS SOFTWARE IS PROVIDED BY Alexey Teplov aka  ''AS IS'' AND ANY
16
; EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17
; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18
; DISCLAIMED. IN NO EVENT SHALL  BE LIABLE FOR ANY
19
; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20
; (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21
; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22
; ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23
; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24
; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
;*****************************************************************************
26
 
27
;Тут определены все сообщения, которые нужны в процессе отладки, и совсем не нужны в рабочей копии программы.
28
If DEBUG
29
stack_msg      db 'Set stack & segments is have completed',0
30
show_string    db 'Have loaded size:'
31
show_decode    db '      ',0
32
show_db1       db '       -Message debug1',0
33
show_db2       db '       -Message debug2',0
34
 
35
 
36
lm_l_found      db '[loader] is found',0
37
lm_lf_timeout   db 'timeout is found',0
38
lm_lf_default   db 'name default is found and end parsing section',0
39
lm_lf_section   db 'found section [',0
40
lm_lf_default_f db 'found default parametr',0
41
lm_l_end        db 'section [loader] is end',0
42
show_all_sect   db 'SHOW ALL Sections',0
43
no_show_only_w  db 'Not show sections - only work on default sect',0
44
_not_found      db '[ not found',0
45
_found_1        db '[] found',0
46
_found_2        db '[ found',0
47
say_hello       db 'Hello $)',0
48
ramdiskFS_st	db 'Start use_RamdiskFS macros',0
49
free_memory_msg db '       -Kb availability system free memory',0
50
RamdiskSize_msg db '       -Kb equal RamdiskSize',0
51
RamdiskSector_msg  db '        -byts RamdiskSector',0
52
RamdiskCluster_msg db '       -RamdiskCluster',0
53
RamdiskFile_msg	   db '       -size RamdiskFile',0
54
fat_create_msg	db '       -first create fat table, point to next block',0
55
BPB_msg		db '       -in byte, why we get data from move BPB struct',0
56
firstDataSect_msg  db '       -first data sector, offset to data in sectors',0
57
size_root_dir_msg  db '       -size root dir in sectrors',0
58
DataClasters_msg   db '       -size data in Clasters',0
59
check_name_fat_msg db '       -if -1 name is present, else 0 then not present name',0
60
convertion_file_name_msg db '       -if -1, then destination name is bad',0
61
make_fat12_RFS_msg db '-Make FAT12 Ram FS',0
62
get_type_FS_msg    db '-End make RamDisk',0
63
return_code_af_move	db '    -return code after 0x87 int 0x15, move block',0
64
return_code_af_fat_m	db '    -return code after 0x87 int 0x15, move fat struc',0
65
 
66
 
67
 
68
end if