@David, post #37
Ze sklepu laptopy; HP, Lenovo, Samsung itp.
@Pawelek, post #66
@KM, post #53
@David, post #71
@morph123, post #76
@wawrzon, post #77
oczekiwanie developerow, ze uzytkownicy sa na tyle kumaci i zmotywowani by ogarnac rzeczy ktore im "nie dzialaja" w detalu i postarac sie przynajmniej wypracowac sformulowanie ktore mozna traktowac jako "bug report" choc moze wymagac to paru maili z kazdej strony
@wawrzon, post #79
@Pawelek, post #82
Czy duża jest trudność przeportowania sterowników z linuxa?
przydałoby się jeszcze kilka kart sieciowych wifi na intelu.
@KM, post #88
Co toza projekt ten ARIX?
#include <exec/libraries.h>
#include <exec/types.h>
#include <exec/memory.h>
#include <proto/exec.h>
#include <proto/debug.h>
#include <stdarg.h>
#include <stdio.h>
static const char __attribute__((used)) version[] = "\0$VER: DebugTest 60.0 " VERSION_STRING_DATE;
struct Library *DebugBase = NULL;
static inline void Bug(const char *format, ...)
{
va_list args;
va_start(args, format);
VBug(format, args);
va_end(args);
}
int main(int argc, char **argv)
{
(void)argc;
(void)argv;
// Use c lib's printf. We are allowed to do that.
printf("debug.library test\n");
printf("SysBase = %p\n", (void *)ExecBase);
void *buffer = AllocVec(100, MEMF_CLEAR);
printf("AllocMem returned %p\n", buffer);
void *buffer3 = AllocVec(100, MEMF_CLEAR);
printf("AllocMem returned %p\n", buffer3);
void *buffer2 = AllocVecAligned(240000, 262144, MEMF_CLEAR);
printf("AllocMemAligned returned %p\n", buffer2);
FreeVec(buffer);
FreeVec(buffer2);
FreeVec(buffer3);
DebugBase = OpenLibrary("debug.library", 0);
printf("After attempting to open debug.library\nDebugBase = %p\n", (void *)DebugBase);
Bug("Hello, world!\n");
CloseLibrary(DebugBase);
return 0;
}