Files
cc65/libsrc/rp6502/lrand.c
rumbledethumps b17c4d3434 add rp6502 target
2023-11-16 18:46:16 -08:00

15 lines
255 B
C

/*
* Copyright (c) 2023 Rumbledethumps
*
* SPDX-License-Identifier: Zlib
* SPDX-License-Identifier: BSD-3-Clause
* SPDX-License-Identifier: Unlicense
*/
#include <rp6502.h>
long __fastcall__ lrand(void)
{
return ria_call_long(RIA_OP_LRAND);
}