home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / emulate / systems / 8048 / buglist.txt < prev    next >
Text File  |  1993-11-04  |  2KB  |  32 lines

  1. Reported bugs fixed in version 1.18
  2.  
  3. - Did not evaluate 0-X to 2's compliment notation.  0-X is now evaluated to
  4.   100H-X for byte operands, and 10000H-X for word operands.  For example the
  5.   instruction: MOV A,#0-5 will now evaluate to MOV A,#251
  6.  
  7. - Expressions such as the following: CTIME-2 evaluated improperly.  The original
  8.   equation evaluation trapped the E-2 in CTIME-2, as an exponent.  This has been
  9.   fixed (exponents can no longer be specified, not that they were needed in the
  10.   first place).
  11.  
  12. - Simulation of the ORL P2,#Value instruction did not execute properly.  It would
  13.   be simulated as follows: P2 = P1 or Value.  One of the pit falls of the editors
  14.   cut and paste.  This has been fixed.
  15.  
  16. - Version 1.18 no longer requires you to specify a home directory to locate the
  17.   help files.  It now looks at the command line passed by DOS to locate the
  18.   directory where the 8048.EXE program resides.  This is not actually a bug
  19.   but makes it a little more convienent when working with files in directories
  20.   other than the one containing the 8048.EXE program.
  21.  
  22. - Availability of the 8748 chip programmer is now mentioned in the online manual
  23.   (sorry but it isn't available at this time).  Press <CTRL><F1> to get the main
  24.   index, go to Programmer, and read the opening paragraph.
  25.  
  26. Reported bugs fixed in version 1.19
  27.  
  28. - Simulation of the ANL P2,#Value instruction did not execute properly.  It would
  29.   be simulated as follows: P2 = P1 and Value.  One of the pit falls of the editors
  30.   cut and paste.  This has been fixed.
  31.  
  32.