2025-10-01 11:25:38 -07:00
|
|
|
/* SPDX-License-Identifier: BSD-2-Clause */
|
|
|
|
|
/* Copyright 1996-2018 The NASM Authors - All Rights Reserved */
|
2009-07-12 12:53:49 -07:00
|
|
|
|
|
|
|
|
#include "nasm.h"
|
|
|
|
|
#include "nasmlib.h"
|
2016-05-25 12:06:29 -07:00
|
|
|
#include "outlib.h"
|
2009-07-12 12:53:49 -07:00
|
|
|
|
2017-03-07 22:40:00 -08:00
|
|
|
enum directive_result
|
2018-12-18 11:12:46 -08:00
|
|
|
null_directive(enum directive directive, char *value)
|
2009-07-12 12:53:49 -07:00
|
|
|
{
|
|
|
|
|
(void)directive;
|
|
|
|
|
(void)value;
|
2017-03-07 22:40:00 -08:00
|
|
|
return DIRR_UNKNOWN;
|
2009-07-12 12:53:49 -07:00
|
|
|
}
|
2010-04-21 00:51:22 +04:00
|
|
|
|
2010-04-21 13:45:32 +04:00
|
|
|
void null_sectalign(int32_t seg, unsigned int value)
|
2010-04-21 00:51:22 +04:00
|
|
|
{
|
|
|
|
|
(void)seg;
|
|
|
|
|
(void)value;
|
|
|
|
|
}
|
2018-05-30 14:43:46 -07:00
|
|
|
|
|
|
|
|
void null_reset(void)
|
|
|
|
|
{
|
|
|
|
|
/* Nothing to do */
|
|
|
|
|
}
|
2018-06-14 22:41:00 -07:00
|
|
|
|
|
|
|
|
int32_t null_segbase(int32_t segment)
|
|
|
|
|
{
|
|
|
|
|
return segment;
|
|
|
|
|
}
|