Searched refs:wrap_target (Results 1 – 11 of 11) sorted by relevance
/hal_rpi_pico-latest/tools/pioasm/ |
D | pio_assembler.cpp | 165 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()
|
D | go_output.cpp | 86 fprintf(out, "const %sWrapTarget = %d\n", prefix.c_str(), program.wrap_target); in output() 95 if (i == program.wrap_target) { in output()
|
D | ada_output.cpp | 117 … 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()
|
D | c_sdk_output.cpp | 85 fprintf(out, "#define %swrap_target %d\n", prefix.c_str(), program.wrap_target); in output() 95 if (i == program.wrap_target) { in output()
|
D | json_output.cpp | 96 fprintf(out, "%s\"wrapTarget\": %d,\n", tabs, program.wrap_target); in output()
|
D | output_format.h | 74 int wrap_target; member
|
D | python_output.cpp | 110 if (i == (uint)program.wrap_target) { in output()
|
D | parser.yy | 74 WRAP_TARGET ".wrap_target" 205 …| WRAP_TARGET { pioasm.get_current_program(@1, ".wrap_target").set_wrap_targ…
|
D | pio_types.h | 281 rvalue wrap_target; member
|
D | lexer.ll | 131 ".wrap_target" return yy::parser::make_WRAP_TARGET(loc);
|
/hal_rpi_pico-latest/src/rp2_common/hardware_pio/include/hardware/ |
D | pio.h | 606 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()
|