Lines Matching refs:load

44 	# load dcd
45 load dcd {{ 00 11 22 33 }} > 0;
47 # same load without dcd
48 load {{ 00 11 22 33 }} > 0;
56 # load a simple IVT to an absolute address
58 load ivt (entry=hello:_start) > 0x1000;
60 # load simple IVT. the IVT self address is set explicitly in the IVT declaration,
61 # giving the IVT a natural address so you don't have to tell where to load it.
62 load ivt (entry=hello:_start, self=0x1000);
64 load ivt (entry=hello:_start, self=0x1000, csf=0x2000, dcd=0);
67 load ivt (entry=hostlink) > 0;
69 load ivt (entry=hello:_start, self=0x1000);
72 # Special syntax that combines the load and call into one statement.
77 load ivt (
83 load ivt (
95 # load a string to some address
96 load "some string" > string_addr;
99 load 0x55.b > ocram_start..ocram_end;
102 load $*;
111 load redboot;
117 load datasrc > 0..8;
121 # load $* ( $.ocram.*, ~$.sdram.* );
123 # load $.sdram.*;
124 # load $.ocram.*;
135 # load $* from sd_player;
137 # load hello$.text @ 64K;
138 # load hello$*
140 load $.text from hello > 0x10000;
148 load 0x55.b > 0x200;
149 load 0x55aa.h > 0x400;
150 load 0x55aa66bb.w > 0x800;
152 # load 0x55.b to 0x200;
153 # load 0x55aa.h to 0x400;
154 # load 0x55aa66bb.w to 0x800;
156 # load 0x55.b @ 0x200;
157 # load 0x55aa.h @ 0x400;
158 # load 0x55aa66bb.w @ 0x800;
160 # load $.text from hello @ .;
161 # load hello$.text @ .;
162 # load hello$* @ .
166 load 0x4c8e.h > 0x100..0x200;
168 # load [ 0a 9b 77 66 55 44 33 22 11 00 ] @ 0x100;
176 # load 0xff.b > hostlink:g_wUsbVID + 4;
178 # load "Fred's Auto Service\x00" > hostlink:g_wUsbVendorName;
182 # load [ 00 11 22 33 44 55 66 77 ] > :g_data + 16;