home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / CEXPRESS.ZIP / BITS.ASM / MEMWORD.ASM < prev    next >
Assembly Source File  |  1989-05-03  |  2KB  |  71 lines

  1. ;void  set_mem_word(bit_string,position,segment,offset);
  2. ;  unsigned char   *bit_string,position;
  3. ;  unsigned short  segment,offset;
  4.  
  5.  
  6.     EXTRN  _memory_model:byte
  7.     EXTRN  _error_code:byte
  8.  
  9. _TEXT    SEGMENT  BYTE PUBLIC 'CODE'
  10.     ASSUME CS:_TEXT
  11.     PUBLIC _set_mem_word
  12. _set_mem_word proc near
  13.     push bp            ;
  14.     mov  bp,sp        ;set stack frame
  15.     push di            ;
  16.     push si            ;
  17.     cmp  _memory_model,0    ;near or far?
  18.     jle  begin        ;jump if near
  19.     inc  bp            ;else add 2 to BP
  20.     inc  bp            ;
  21. begin:    push ds            ;save DS
  22.     cmp  _memory_model,2    ;data near or far?
  23.     jb   L0            ;jump ahead if near
  24.     lds  si,dword ptr[bp+4] ;DS:SI pts to Bits
  25.     inc  bp            ;add 2 to BP since dword ptr
  26.     inc  bp            ;
  27.     jmp  short L00        ;
  28. L0:    mov  si,[bp+4]        ;
  29. L00:    mov  byte ptr[bp+4],0    ;errorcode 0 = no error
  30.     mov  ax,[bp+8]        ;get segment
  31.     mov  es,ax        ;place in ES
  32.     mov  di,[bp+10]        ;get offset
  33.     mov  bx,1        ;BX is mask, set low bit
  34.     sub  cx,cx        ;clear CX
  35.     mov  cl,[bp+6]        ;get field start pos
  36.     jcxz L1            ;jump if start at bit 0
  37.     shl  bx,cl        ;mov mask bit to starting pos
  38. L1:    cmp  byte ptr[si],0    ;null string?
  39.     je   L6            ;quit if so
  40.     mov  cx,16        ;as many as eight bits
  41.     sub  cx,dx        ;minus start position = max bits to write
  42.     mov  dx,es:[di]        ;place memory value in DX
  43. L2:    mov  al,[si]        ;get byte from string
  44.     cmp  al,0        ;end of string?
  45.     je   L5            ;quit
  46.     cmp  al,'1'        ;a '1'?
  47.     jne  L3            ;jump if not
  48.     or   dx,bx        ;set bit
  49.     jmp  short L4        ;jump ahead
  50. L3:    not  bx            ;reverse mask
  51.     and  dx,bx        ;clear the bit
  52.     not  bx            ;restore mask
  53. L4:    inc  si            ;forward string pointer
  54.     shl  bx,1        ;shift mask
  55.     loop L2            ;go do next
  56.     inc  byte ptr[bp+4]    ;1 = binary string too long
  57. L5:    mov  es:[di],dx        ;return value to memory
  58. L6:    pop  ds            ;restore DS
  59.     mov  al,[bp+4]        ;fetch _error_code
  60.     mov  _error_code,al    ;set it
  61.     pop  si            ;
  62.     pop  di            ;
  63.     pop  bp            ;
  64.     cmp  _memory_model,0    ;quit
  65.     jle  quit        ;
  66.     db   0CBh        ;RET far
  67. quit:    ret            ;RET near
  68. _set_mem_word endp
  69. _TEXT    ENDS
  70.     END
  71.