~ubuntu-branches/ubuntu/wily/slof/wily

« back to all changes in this revision

Viewing changes to lib/libnvram/libnvram.code

  • Committer: Package Import Robot
  • Author(s): Logan Rosen
  • Date: 2013-05-04 20:41:17 UTC
  • mfrom: (2.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20130504204117-fb1q6em82ugu8plb
Tags: 20121018+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:
276
276
 
277
277
MIRP
278
278
 
 
279
// ( fetch_token store_token size nvram-addr -- )
 
280
PRIM(internal_X2d_nvram_X2d_init)
 
281
        void *nvram_addr = TOS.a; POP;
 
282
        uint32_t nvram_size = TOS.u; POP;
 
283
        uint32_t store_token = TOS.u; POP;
 
284
        long fetch_token = TOS.u; POP;
279
285
 
 
286
        nvram_init(fetch_token, store_token, nvram_size, nvram_addr);
 
287
MIRP