home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / sys / m6809 / 453 < prev    next >
Encoding:
Text File  |  1992-11-09  |  2.1 KB  |  63 lines

  1. Newsgroups: comp.sys.m6809
  2. Path: sparky!uunet!usc!hela.iti.org!cs.widener.edu!eff!sol.ctr.columbia.edu!destroyer!cs.ubc.ca!unixg.ubc.ca!kakwa.ucs.ualberta.ca!ee.ualberta.ca!nyarko
  3. From: nyarko@ee.ualberta.ca (David Nyarko)
  4. Subject: Re: 6809 simulator
  5. Message-ID: <nyarko.721350996@ee.ualberta.ca>
  6. Keywords: No makefile ?! 
  7. Sender: news@kakwa.ucs.ualberta.ca
  8. Nntp-Posting-Host: bode.ee.ualberta.ca
  9. Organization: University Of Alberta, Edmonton Canada
  10. References: <1992Nov7.204337.3931@cc.umontreal.ca>
  11. Date: Mon, 9 Nov 1992 23:16:36 GMT
  12. Lines: 49
  13.  
  14. archamba@ERE.UMontreal.CA (Archambault Benoit) writes:
  15.  
  16. >I hope you will all forgive my ignorance but I've never used make
  17. >to compile any program !! however, here's how you can compile the
  18. >source from the compressed archive file: 
  19.  
  20. >    uncompress sim09.Z
  21. >    tar xvf sim09
  22. >    cc *.c -lcurses
  23.  
  24. I tried to compile it on an HP9000 series 800 computer with
  25. the 2 available compilers. I had to select the ANSI option
  26. in both cases.
  27. a)
  28. using the gcc compiler with the following option
  29.     gcc -ansi -o sim09 *.c -lcurses
  30. and get the following  warnings.
  31.  
  32. misc.c:31: warning: type mismatch with previous implicit declaration
  33. misc.c:23: warning: previous implicit declaration of `readbus'
  34. misc.c:31: warning: `readbus' was previously implicitly declared to return `int'
  35.  
  36. b)
  37. I get a similar message (excluding the misc.c:23: warning) when I use
  38. the hp c compiler with the option
  39.     cc -Aa -o sim09 *.c -lcurses
  40.  
  41. The program starts up but when I load the "simon.run"
  42. and try to run it, I only get the 1st line of code to execute.
  43. When I also select the starting address "e000" to disassemble
  44. the code I loaded at "e000" I have the address coloum 
  45. starting at "ffffe000" and the opcode coloumn does not change.
  46.  
  47. I have tried the PC version which works well.
  48.  
  49. Any comments?
  50.  
  51. >    rm *.o
  52. >    mv a.out sim09
  53.  
  54. >Hope you enyoy playing with SIM09.
  55. >                        -Thanks.
  56.  
  57.  
  58. >-- 
  59. >"Ribbit!"         Benoit Archambault                    Universite de Montreal 
  60. >  ` /\/@\/@\/\          archamba@ERE.UMontreal.CA       C.P. 6128, Succ. A 
  61. >   _\ \ -  / /_                                         Montreal, Quebec 
  62. >                                                        H3C 3J6
  63.