Home
last modified time | relevance | path

Searched refs:wrap_target (Results 1 – 11 of 11) sorted by relevance

/hal_rpi_pico-latest/tools/pioasm/
Dpio_assembler.cpp165 if (wrap_target) { in set_wrap_target()
167 msg << ".wrap_target was already specified at " << wrap_target->location; in set_wrap_target()
170 wrap_target = resolvable_int(l, instructions.size()); in set_wrap_target()
492 if (program.wrap_target) { in write_output()
493 cprogram.wrap_target = program.wrap_target->resolve(program); in write_output()
494 if (cprogram.wrap_target >= program.instructions.size()) { in write_output()
495 …throw syntax_error(program.wrap_target->location, ".wrap_target cannot be placed after the last pr… in write_output()
498 cprogram.wrap_target = 0; in write_output()
Dgo_output.cpp86 fprintf(out, "const %sWrapTarget = %d\n", prefix.c_str(), program.wrap_target); in output()
95 if (i == program.wrap_target) { in output()
Dada_output.cpp117 … fprintf(out, " %s_Wrap_Target : constant := %d;\n", prog_name.c_str(), program.wrap_target); in output()
126 if (i == program.wrap_target) { in output()
Dc_sdk_output.cpp85 fprintf(out, "#define %swrap_target %d\n", prefix.c_str(), program.wrap_target); in output()
95 if (i == program.wrap_target) { in output()
Djson_output.cpp96 fprintf(out, "%s\"wrapTarget\": %d,\n", tabs, program.wrap_target); in output()
Doutput_format.h74 int wrap_target; member
Dpython_output.cpp110 if (i == (uint)program.wrap_target) { in output()
Dparser.yy74 WRAP_TARGET ".wrap_target"
205 …| WRAP_TARGET { pioasm.get_current_program(@1, ".wrap_target").set_wrap_targ…
Dpio_types.h281 rvalue wrap_target; member
Dlexer.ll131 ".wrap_target" return yy::parser::make_WRAP_TARGET(loc);
/hal_rpi_pico-latest/src/rp2_common/hardware_pio/include/hardware/
Dpio.h606 static inline void sm_config_set_wrap(pio_sm_config *c, uint wrap_target, uint wrap) { in sm_config_set_wrap() argument
608 valid_params_if(HARDWARE_PIO, wrap_target < PIO_INSTRUCTION_COUNT); in sm_config_set_wrap()
610 (wrap_target << PIO_SM0_EXECCTRL_WRAP_BOTTOM_LSB) | in sm_config_set_wrap()
1465 static inline void pio_sm_set_wrap(PIO pio, uint sm, uint wrap_target, uint wrap) { in pio_sm_set_wrap() argument
1469 valid_params_if(HARDWARE_PIO, wrap_target < PIO_INSTRUCTION_COUNT); in pio_sm_set_wrap()
1472 (wrap_target << PIO_SM0_EXECCTRL_WRAP_BOTTOM_LSB) | in pio_sm_set_wrap()