home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / sys / intel / 2687 < prev    next >
Encoding:
Internet Message Format  |  1992-12-14  |  1.3 KB

  1. Path: sparky!uunet!noc.near.net!hri.com!spool.mu.edu!yale.edu!ira.uka.de!Sirius.dfn.de!th-ilmenau.RZ.TH-Ilmenau.DE!hpux.rz.uni-jena.de!pfk
  2. From: pfk@rz.uni-jena.de (Frank Klemm)
  3. Newsgroups: comp.sys.intel
  4. Subject: Re: Intel claims the Pentium is 64-bit! (who cares if it real
  5. Message-ID: <1992Dec14.193040.26879@rz.uni-jena.de>
  6. Date: 14 Dec 92 19:30:40 GMT
  7. References: <tim-081292112603@129.38.222.43> <723877924snz@mccomp.demon.co.uk>
  8. Sender: pfk@rz.uni-jena.de (Frank Klemm)
  9. Reply-To: pfk@rz.uni-jena.de (Frank Klemm)
  10. Organization: Friedrich-Schiller-University Jena, Germany
  11. Lines: 35
  12.  
  13.  
  14. Z80
  15. ~~~
  16. The 8 bit registers are A, B, C, D, E, H, L, IXL, IXH, IYL, IYH. The 8 bit accu is A. The following 
  17. addressings modes are available (HL), (IX+n), (IY+n) 
  18. The following operations are available:
  19.  
  20. MOV r,r         MOV r,n        MOV A,(nn)    MOV (nn),A
  21. ADD A,r
  22. ADC A,r
  23. SUB A,r
  24. SBB A,r
  25. AND A,r
  26. OR  A,r
  27. XOR A,r
  28. CMP A,r
  29. INC r
  30. DEC r
  31. TEST r,(1 << s)
  32.  
  33. The 16 bit registers are BC, DE, HL, IX and IY. The 16 bit accu can be used HL, IX and IY.
  34. The following operations are available.
  35.  
  36. MOV rr,nn    MOV rr,(nn)     MOV (nn),rr
  37. ADC aa,rr
  38. SBB aa,rr
  39. INC rr
  40. DEC rr
  41. PUSH rr
  42. POP rr
  43.  
  44. To my mind the Z80 is a 8 bit processor with many helpful 16 bit stuff. If you know the 6502/10 series (C64),
  45. it is much easier to program the Z80 becuase of that.
  46.  
  47. Frank
  48.