Subversion Repositories Kolibri OS

Rev

Rev 1231 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2288 clevermous 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
cseg_msg        db '       - Adress of code segment',0
30
stack_msg       db 'Set stack & segments is have completed',0
31
show_string     db 'Have loaded size:'
32
show_decode     db '      ',0
33
show_db1        db '       -Message debug1',0
34
show_db2        db '       -Message debug2',0
35
 
36
 
37
lm_l_found      db '[loader] is found',0
38
lm_lf_timeout   db 'timeout is found',0
39
lm_lf_default   db 'name default is found and end parsing section',0
40
lm_lf_section   db 'found section [',0
41
lm_lf_default_f db 'found default parametr',0
42
lm_l_end        db 'section [loader] is end',0
43
show_all_sect   db 'SHOW ALL Sections',0
44
no_show_only_w  db 'Not show sections - only work on default sect',0
45
_not_found      db '[ not found',0
46
_found_1        db '[] found',0
47
_found_2        db '[ found',0
48
say_hello       db 'Hello $)',0
49
ramdiskFS_st    db 'Start use_RamdiskFS macros',0
50
free_memory_msg db '       -Kb availability system free memory',0
51
RamdiskSize_msg db '       -Kb equal RamdiskSize',0
52
RamdiskSector_msg  db '        -byts RamdiskSector',0
53
RamdiskCluster_msg db '       -RamdiskCluster',0
54
RamdiskFile_msg    db '       -size RamdiskFile',0
55
fat_create_msg  db '       -first create fat table, point to next block',0
56
BPB_msg         db '       -in byte, why we get data from move BPB struct',0
57
firstDataSect_msg  db '       -first data sector, offset to data in sectors',0
58
size_root_dir_msg  db '       -size root dir in sectrors',0
59
DataClasters_msg   db '       -size data in Clasters',0
60
first_entry_in_fat db '       -data segment in FIRST entry FAT',0
61
check_root_fat_    db '      :     --------------',0
62
check_name_fat_msg_y db 'Name is present that is BAD',0
63
check_name_fat_msg_n db 'Name is not present that is GOOD',0
64
name_of_seg_get_64 db '       -name of seg where we get 64 Kb of data',0
65
convertion_file_name_msg_y db '->Destination name of file is GOOD',0
66
convertion_file_name_msg_n db '->Destination name of file is BAD',0
67
alarm_msg       db '%%%%%%%% WARNING: MISS THE FILE %%%%%%%%%%%',0
68
start_making_FAT12_msg db '>>>>>> Begin make a RAMDISK and FS after 1 Mb <<<<<<<',0
69
make_fat12_RFS_msg db '-Make FAT12 Ram FS',0
70
get_type_FS_msg    db '-End make RamDisk',0
71
seg_where_get_data db '      - Segment where we get data for move up file',0
72
return_code_af_move     db '    -return code after 0x87 int 0x15, move block',0
73
return_code_af_fat_m    db '    -return code after 0x87 int 0x15, move fat struc',0
74
 
75
 
76
 
77
end if