Advertisement
dllbridge

Untitled

Jan 27th, 2025
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.34 KB | None | 0 0
  1. .org    4h
  2.  
  3.      LD    H, 5    
  4.      LD    L, 2
  5.      LD   SP, 00ffh
  6.      push HL
  7.      LD   HL, 65535  
  8.      call foo
  9.  
  10.      xor  A
  11.      inc  B
  12.      dec  c
  13.  
  14. .end    
  15.  
  16.  
  17.  
  18. ;- - - - - - - - - - - - - -  int add(int, int);
  19. .org  50h
  20. foo: pop  DE
  21.      pop  BC
  22.      LD   A, C
  23.      ADD  A, B
  24.      push DE
  25.      ret
  26. .end
  27.  
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement