~ubuntu-branches/ubuntu/trusty/slof/trusty

« back to all changes in this revision

Viewing changes to lib/libhvcall/hvcall.code

  • Committer: Package Import Robot
  • Author(s): Logan Rosen
  • Date: 2013-12-11 00:00:46 UTC
  • mfrom: (2.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20131211000046-1199k14mvmd37ts6
Tags: 20131015+dfsg-1ubuntu1
* Merge from Debian unstable. Remaining changes:
  - Since Ubuntu always builds Architecture: all packages on i386, build
    using a cross-compiler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
        unsigned long dst   = TOS.u;
104
104
        TOS.u = hv_logical_memop(dst, src, esize, count, op);
105
105
MIRP
 
106
 
 
107
PRIM(hv_X2d_cas)
 
108
        unsigned long size   = TOS.u; POP;
 
109
        unsigned long buf    = TOS.u; POP;
 
110
        unsigned long vec    = TOS.u;
 
111
        TOS.u = hv_cas(vec, buf, size);
 
112
MIRP