Contents Menu Expand Light mode Dark mode Auto light/dark, in light mode Auto light/dark, in dark mode Skip to content
πŸš€ Try FlipJump in your browser: fj.tomhe.app
FlipJump
FlipJump
  • Getting Started
    • Installation
    • Hello, World!
    • Anatomy of a FlipJump program
  • Language Reference
    • The FlipJump Instruction
    • Lexical Structure
    • Expressions
    • Macros
    • Namespaces
    • Directives
    • Types and built-in names
    • Input / Output
    • Complexity notation
  • Standard Library
    • bit/casting.fj
    • bit/cond_jumps.fj
    • bit/div.fj
    • bit/input.fj
    • bit/logics.fj
    • bit/math.fj
    • bit/memory.fj
    • bit/mul.fj
    • bit/output.fj
    • bit/pointers.fj
    • bit/shifts.fj
    • casting.fj
    • hex/cond_jumps.fj
    • hex/div.fj
    • hex/input.fj
    • hex/logics.fj
    • hex/math.fj
    • hex/math_basic.fj
    • hex/memory.fj
    • hex/mul.fj
    • hex/output.fj
    • hex/pointers/basic_pointers.fj
    • hex/pointers/pointer_arithmetics.fj
    • hex/pointers/read_pointers.fj
    • hex/pointers/stack.fj
    • hex/pointers/write_pointers.fj
    • hex/pointers/xor_from_pointer.fj
    • hex/pointers/xor_to_pointer.fj
    • hex/shifts.fj
    • hex/tables_init.fj
    • ptrlib.fj
    • runlib.fj
  • Examples
    • Hello World
    • Prime Sieve
    • Calculator
    • Quine
  • Companion tools
    • FlipJump IDE β€” fj.tomhe.app
    • c2fj β€” C to FlipJump
    • bf2fj β€” Brainfuck to FlipJump
Back to top
View this page
Edit this page

hex/pointers/write_pointers.fjΒΆ

β€”β€”β€”- Write Pointers

View source on GitHub

MacrosΒΆ

hexΒΆ

  • hex.write_hex/2 β€” like: *ptr = src

  • hex.zero_ptr β€” like: *ptr = 0

  • hex.write_byte/2 β€” like: *ptr = src[:2]

  • hex.write_hex_and_inc β€” like: *ptr = src

  • hex.write_hex/3 β€” like: *ptr[:n] = src[:n]

  • hex.write_byte_and_inc β€” like: *ptr = src[:2]

  • hex.write_byte/3 β€” like: *ptr[:n] = src[:2n]

Next
hex/pointers/xor_from_pointer.fj
Previous
hex/pointers/stack.fj
Copyright © 2026, Tom Herman
Made with Sphinx and @pradyunsg's Furo
On this page
  • hex/pointers/write_pointers.fj
    • Macros
      • hex