Difference between revisions of "Addstore"

From WikiManual
Jump to: navigation, search
 
Line 1: Line 1:
 
Works like add but the second variable passed is a memory location and data is added directly into location.
 
Works like add but the second variable passed is a memory location and data is added directly into location.
 
examples:  
 
examples:  
  10 .up store
+
  ''Given'' 10 .up store
 +
 
 
  1 .up addstore ''same as'' *.up 1 add .up store ''is equal to'' 11
 
  1 .up addstore ''same as'' *.up 1 add .up store ''is equal to'' 11
 +
 
  2 .up addstore ''same as'' *.up 2 add .up store ''is equal to'' 12
 
  2 .up addstore ''same as'' *.up 2 add .up store ''is equal to'' 12

Latest revision as of 10:23, 1 July 2014

Works like add but the second variable passed is a memory location and data is added directly into location. examples:

Given 10 .up store
1 .up addstore same as *.up 1 add .up store is equal to 11
2 .up addstore same as *.up 2 add .up store is equal to 12