From c73fd0263789de1ffcd65fd2b7a4ff8f33c2cb86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandro=20S=C3=A1nchez=20Bach?= Date: Sat, 15 Feb 2014 08:35:01 -0800 Subject: [PATCH] Updated Coding Style (markdown) --- Coding-Style.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Coding-Style.md b/Coding-Style.md index 903f6eb..374eb0d 100644 --- a/Coding-Style.md +++ b/Coding-Style.md @@ -16,6 +16,7 @@ We recommend to follow these guidelines when writing code for RPCS3. They aren't * Module functions and lv2 SysCalls: * Handle file accesses using *VFS* functions. * Return defined error codes. That is, use `return CELL_OK;` instead of `return 0;`. + * Do **not** delete the entries in *rpcs3/Emu/SysCalls/FuncList.cpp* after implenting a function. * Use `mem*_t` arguments instead of `u32 *_addr`. * Pointers to `u8`, `u16`, `u32`, `u64` are respectively `mem8_t`, `mem16_t`, `mem32_t`, `mem64_t`. * Pointers to the datatype `foo` are `mem_ptr_t`.