Function load_floats

Source
pub fn load_floats(
    cpu: &mut Cpu,
    scheme: InstructionScheme,
) -> OperationResult<()>
Expand description

§0x0305 load_floats:target [start:end]

This page describes the instruction scheme.

§Target

  • The register containing the address to read from.

§Arguments

  • Range($start, $end)

§Operation

  • copies FLOAT[$start..=$end] into MEM[REG[$target]; ($end-$start)]

To load only one register from memory, just make $start == $end.

§Errors