Update mem.h
Remove header, convert multiline comments into single line comments
This commit is contained in:
parent
3b6dbf77c3
commit
13d6fae9d8
|
@ -1,8 +1,3 @@
|
||||||
// Project64 - A Nintendo 64 emulator
|
|
||||||
// http://www.pj64-emu.com/
|
|
||||||
// Copyright(C) 2001-2021 Project64
|
|
||||||
// Copyright(C) 2014 Bobby Smiles
|
|
||||||
// GNU/GPLv2 licensed: https://gnu.org/licenses/gpl-2.0.html
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
|
@ -69,7 +64,7 @@ static inline void dmem_store_u32(CHle * hle, const uint32_t* src, uint16_t addr
|
||||||
store_u32(hle->dmem(), address & 0xfff, src, count);
|
store_u32(hle->dmem(), address & 0xfff, src, count);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* convenient functions DRAM access */
|
// Convenient functions DRAM access
|
||||||
static inline uint8_t* dram_u8(CHle * hle, uint32_t address)
|
static inline uint8_t* dram_u8(CHle * hle, uint32_t address)
|
||||||
{
|
{
|
||||||
return u8(hle->dram(), address & 0xffffff);
|
return u8(hle->dram(), address & 0xffffff);
|
||||||
|
|
Loading…
Reference in New Issue