mirror of
https://github.com/netwide-assembler/nasm
synced 2026-08-26 16:23:04 -04:00
- 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>
15 lines
332 B
C
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
|