nz80cal.pas 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. Copyright (c) 1998-2002 by Florian Klaempfl
  3. Generate Z80 assembler for in call nodes
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. ****************************************************************************
  16. }
  17. unit nz80cal;
  18. {$i fpcdefs.inc}
  19. interface
  20. uses
  21. ncgcal;
  22. type
  23. tz80callnode = class(tcgcallnode)
  24. protected
  25. procedure pop_parasize(pop_size:longint);override;
  26. end;
  27. implementation
  28. uses
  29. cpubase,
  30. aasmdata,aasmcpu,
  31. ncal,
  32. cgobj;
  33. {*****************************************************************************
  34. TZ80CALLNODE
  35. *****************************************************************************}
  36. procedure tz80callnode.pop_parasize(pop_size:longint);
  37. begin
  38. if pop_size>=2 then
  39. begin
  40. cg.getcpuregister(current_asmdata.CurrAsmList,NR_A);
  41. while pop_size>=2 do
  42. begin
  43. current_asmdata.CurrAsmList.Concat(taicpu.op_reg(A_POP,NR_AF));
  44. dec(pop_size,2);
  45. end;
  46. cg.ungetcpuregister(current_asmdata.CurrAsmList,NR_A);
  47. end;
  48. if pop_size=1 then
  49. current_asmdata.CurrAsmList.Concat(taicpu.op_reg(A_INC,NR_SP));
  50. end;
  51. begin
  52. ccallnode:=tz80callnode;
  53. end.