mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-10 01:30:19 +00:00
16 lines
408 B
Python
16 lines
408 B
Python
|
|
# extmod/modtrezorutils/modtrezorutils.c
|
|
def memcpy(dst: bytearray, dst_ofs: int,
|
|
src: bytearray, src_ofs: int,
|
|
'''
|
|
Copies at most `n` bytes from `src` at offset `src_ofs` to
|
|
`dst` at offset `dst_ofs`. Returns the number of actually
|
|
copied bytes.
|
|
'''
|
|
|
|
# extmod/modtrezorutils/modtrezorutils.c
|
|
def halt(msg: str=None) -> None:
|
|
'''
|
|
Halts execution
|
|
'''
|