search for: ext_ram

Displaying 3 results from an estimated 3 matches for "ext_ram".

Did you mean: ext_cal
2006 Apr 07
1
Formatting form tags for children of parrent data?
...nput id="program_file_location" name="archive[file_location]" size="30" type="text" value="<%= @program.file_location %>" /> </p> <p><b>Extra Ram</b><br> Yes <input name="archive[ext_ram]" type="radio" value="1" <%= ''checked'' if @program.ext_ram == 1 %> /> No <input name="archive[ext_ram]" type="radio" value="0" <%= ''checked'' if @program.ext_...
2006 Apr 20
8
Whats the best way to do this?
I have an archive that can have 0 or more extra files associated with it. I would like to be able to edit the associated files info on the same page as the archive info. Listing the extra files info to the edit form is simple enough, but How do I form the text input fields for easy (or automatic) pick-up in the update? Or am I barking up the wrong tree here? -- Posted via
2012 Oct 15
1
[QEMU PATCH v4] create struct for machine initialization arguments
...= args->cpu_model; + const char *kernel_filename = args->kernel_filename; + const char *kernel_cmdline = args->kernel_cmdline; + const char *initrd_filename = args->initrd_filename; ARMCPU *cpu; MemoryRegion *address_space_mem = get_system_memory(); MemoryRegion *ext_ram = g_new(MemoryRegion, 1); diff --git a/hw/xtensa_lx60.c b/hw/xtensa_lx60.c index 3653f65..1fd2c47 100644 --- a/hw/xtensa_lx60.c +++ b/hw/xtensa_lx60.c @@ -268,11 +268,14 @@ static void lx_init(const LxBoardDesc *board, } } -static void xtensa_lx60_init(ram_addr_t ram_size, -...