NEWS 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. version 2.0 05-02-96
  2. --------------------
  3. * Switched to bfd library. Any supported format (elf, coff, ...) can be used.
  4. * The UART devices can be set through -uart1 and -uart2 switches.
  5. * Switched to GNU readline.
  6. * Added -c option to run batch files at startup
  7. * 'reg' command can show different register windows (eg 'reg w3').
  8. * Use 'help' for online help on simulator commands
  9. version 1.8.1 20-01-96
  10. --------------------
  11. * added -mevrev0 switch to simulate MEC rev.0 bugs in timer and uart
  12. * added -iurev0 switch to simulate IU rev.0 jmpl/restore bug
  13. * Added sis command 'batch' to run batch files
  14. version 1.8 30-10-95
  15. --------------------
  16. * Added s-record support. Use the '-s' switch with sis or the 'load' command.
  17. * IU load dependencies are now modelled
  18. version 1.7 30-10-95
  19. --------------------
  20. * Power-down mode implemented in erc32.c.
  21. * Performance display shows the ratio between simulator-time and real-time.
  22. version 1.6.2 25-10-95
  23. --------------------
  24. * The UARTs can now be run at a given speed (simulator time) to better
  25. simulate the behaviour of interrupt routines. The "true mode" is
  26. selected through a compile switch in the makefile.
  27. version 1.6 28-09-95
  28. --------------------
  29. * Major reorganisation of the code. mec.c and mem.c merged into erc32.c.
  30. * The load command does NOT longer load the initialised data at an address
  31. defined by .bdata. This is done in srt0.s using _environ.
  32. * Additional MEC functionallity added - software reset, memory access
  33. protection and waitstate configuration register.
  34. * interf.c - a GDB interface added
  35. * -v switch (verbose) added
  36. version 1.5 14-09-95
  37. --------------------
  38. * Added a instruction trace buffer, enabled through the 'hist' command.
  39. * Added a 'perf' command to display statistics such as instruction mix,
  40. CPI, FPU holds etc.
  41. * Added -nfp switch to disable FPU.
  42. * Added -freq switch to set simulated frequency.
  43. version 1.4 22-08-95
  44. --------------------
  45. * A -g is provided for those who have problems with GNU readline().
  46. version 1.3 26-07-95
  47. --------------------
  48. * No major news, just a bug fix release ...
  49. version 1.2 13-07-95
  50. --------------------
  51. * Added setting of IU registers through the 'reg' command. See README.
  52. * The GNU readline() function is used for command input. However, a
  53. ctrl-D still kills the simulator ...
  54. version 1.1 07-07-95
  55. --------------------
  56. * Added a 'go' command
  57. * Added cycle counting for interrupt overhead.
  58. * Function 'get_mem_ptr' takes one more parameter to avoid segmentation
  59. faults if a.out files are loaded outside the simulated memory. See README.
  60. * Added user-defined function sim_stop().
  61. * Added a reset command. See README.
  62. * Implemented buffered output for MEC uarts to improve output speed.