blob: bb8a7fd9d895da40c2186b00190db20167f5169d [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MACROS_H_
#define MACROS_H_
#include "magma_util/macros.h"
static inline bool fits_in_40_bits(uint64_t address)
{
return (address & 0xFFFFFF0000000000ull) == 0;
}
#endif // MACROS_H_