550°
50w ago - As a follow-up to his
PS3 SCETool v0.2.7 update, today PlayStation 3 homebrew developer
Naehrwert has released the source code for a Quick PS3 CoreOS Image Tool via Twitter.
Files included below are the util.h, util.cpp, types.h and main.cpp released under the GPLv2.
Download:
Quick PS3 CoreOS Image Tool Code /
Quick PS3 CoreOS Image Tool (Compiled) /
Quick PS3 CoreOS Image Tool Code (Mirror) /
GIT
To quote: quick coreos image tool - http://pastie.org/4003488
## util.h
/*
* Copyright (c) 2012 by naehrwert
* This file is released under the GPLv2.
*/
#ifndef _UTIL_H_
#define _UTIL_H_
#include <stdio.h>
#include "types.h"
/*! Utility functions. */
u8 *_read_buffer(const s8 *file, u32 *length);
int _write_buffer(const s8 *file, u8 *buffer, u32 length);
#endif