Displaying 3 results from an estimated 3 matches for "writemsg".
2004 Dec 08
3
isolinux needing mkisofs
...nesec ;DEB Retrieve Boot Record
Volume
<
< mov eax, dword [trackbuf+47h] ;DEB EAX is now address of
Boot Catalog
<
< %ifdef DEBUG_MESSAGES
< mov si,bcat_loc_msg ;DEB Write sector address of
boot cat
< call writemsg ;DEB
< call writehex8 ;DEB
< call crlf ;DEB
< %endif
<
< mov bx, trackbuf ;DEB
< call getonesec ;DEB get the Boot Catalog
<
<...
2008 Jul 16
1
[PATCH] isolinux: rename CurDir to CurrentDir
...ory
FirstSecSum resd 1 ; Checksum of bytes 64-2048
ImageDwords resd 1 ; isolinux.bin size, dwords
@@ -891,7 +891,7 @@
mov eax,[trackbuf+156+2]
mov [RootDir+dir_lba],eax
- mov [CurDir+dir_lba],eax
+ mov [CurrentDir+dir_lba],eax
%ifdef DEBUG_MESSAGES
mov si,dbg_rootdir_msg
call writemsg
@@ -900,11 +900,11 @@
%endif
mov eax,[trackbuf+156+10]
mov [RootDir+dir_len],eax
- mov [CurDir+dir_len],eax
+ mov [CurrentDir+dir_len],eax
add eax,SECTOR_SIZE-1
shr eax,SECTOR_SHIFT
mov [RootDir+dir_clust],eax
- mov [CurDir+dir_clust],eax
+ mov [CurrentDir+dir_clust],eax
;...
2007 Nov 03
9
wxThread
Hey guys,
I''m working on the start of incorperating wxSocket into a library that
can be included with the Core, and a part of this, is to create a
wxThread class, which will basically just be a barebone copy over of
Ruby''s own Thread class. (This should also help when we get Ruby 2.0,
which hopefully will have Native Threads, as we should still be able to
get the base