nasm/disasm/sync.h
H. Peter Anvin (Intel) ed23d3ba34 ndisasm: add -z option for data size; clean up address handling
- Add a -z option to set the data size to be read (useful with -e)
- Clean up at least some remaining 32-bit assumptions.

Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
2026-02-09 16:10:32 -08:00

15 lines
332 B
C

/* SPDX-License-Identifier: BSD-2-Clause */
/* Copyright 1996-2009 The NASM Authors - All Rights Reserved */
/*
* sync.h header file for sync.c
*/
#ifndef NASM_SYNC_H
#define NASM_SYNC_H
void init_sync(void);
void add_sync(uint64_t position, uint64_t length);
uint64_t next_sync(uint64_t position, uint64_t *length);
#endif