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

  1. ;void  int_field_string(value,start_bit,number_bits,return_string);
  2. ;  unsigned int   value;
  3. ;  unsigned char  start_bit,number_bits,return_string;
  4.  
  5.     EXTRN  _memory_model:byte
  6.     EXTRN  _error_code:byte
  7.  
  8. _TEXT    SEGMENT  BYTE PUBLIC 'CODE'
  9.     ASSUME CS:_TEXT
  10.     PUBLIC _int_field_string
  11. _int_field_string proc near
  12.     push bp            ;save BP
  13.     mov  bp,sp        ;set stack frame
  14.     push di            ;
  15.     push si            ;
  16.     cmp  _memory_model,0    ;near or far?
  17.     jle  begin        ;jump if near
  18.     inc  bp            ;else add 2 to BP
  19.     inc  bp            ;
  20. begin:    cmp  _memory_model,2    ;data near or far?
  21.     jb   L0            ;jump if near
  22.     les  di,dword ptr[bp+10] ;ES:DI pts to return string
  23.     jmp  short L00        ;
  24. L0:    mov  ax,ds        ;ES = DS
  25.     mov  es,ax        ;
  26.     mov  di,[bp+10]        ;near case
  27. L00:    mov  _error_code,1    ;1 = error
  28.     mov  ax,[bp+4]        ;load value into AX
  29.     sub  cx,cx        ;CL = 0
  30.     mov  es:[di],cl        ;return null string if error
  31.     mov  cl,[bp+6]        ;starting point in CX
  32.     cmp  cx,15        ;in range?
  33.     ja   L4            ;quit if not
  34.     sub  dx,dx        ;clear DX
  35.     mov  dl,[bp+8]        ;field width in DX
  36.     or   dx,dx        ;test for zero
  37.     jz   L4            ;quit if zero
  38.     mov  si,cx        ;starting point copy
  39.     add  si,dx        ;add field width
  40.     cmp  si,16        ;in range?
  41.     ja   L4            ;quit if not
  42.     add  di,dx        ;point to end of string
  43.     mov  byte ptr es:[di],0 ;set terminator byte
  44.     mov  bx,1        ;BX will be bit mask
  45.     shl  bx,cl        ;shift mask bit to strtpt
  46.     mov  cx,dx        ;CX counts bits
  47.     mov  dx,3031H        ;'0' and '1' in DH-DL
  48. L1:    dec  di            ;point to next byte
  49.     test ax,bx        ;test if bit is 1
  50.     jz   L2            ;jump below if '0'
  51.     mov  es:[di],dl        ;write a '1'
  52.     jmp  short L3        ;jump ahead
  53. L2:    mov  es:[di],dh        ;write a '0'
  54. L3:    shl  bx,1        ;shift mask by 1 bit
  55.     loop L1            ;go do the next digit
  56.     dec  _error_code    ;0 = no error
  57. L4:    pop  si            ;
  58.     pop  di            ;
  59.     pop  bp            ;
  60.     cmp  _memory_model,0    ;quit
  61.     jle  quit        ;
  62.     db   0CBh        ;RET far
  63. quit:    ret            ;RET near
  64. _int_field_string ENDP
  65. _TEXT    ENDS
  66.     END
  67.