Release 1.10

This commit is contained in:
2021-01-12 23:02:29 +01:00
parent 324aeec752
commit 4431f67f75
69 changed files with 8410 additions and 1851 deletions

18
.vscode/c_cpp_properties.json vendored Normal file
View File

@ -0,0 +1,18 @@
{
"configurations": [
{
"name": "amiga",
"includePath": [
"/opt/amiga/m68k-amigaos/ndk-include/",
"/opt/amiga/m68k-amigaos/clib2/include/"
],
"defines": [],
"compilerPath": "/opt/amiga/bin/m68k-amigaos-gcc",
"cStandard": "c99",
"cppStandard": "c++98",
"intelliSenseMode": "${default}",
"compilerArgs": []
}
],
"version": 4
}

23
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,23 @@
// Debug with remote gdbserver for AmigaOS:
// http://aminet.net/package/dev/debug/bgdbserver
// Start in FSUAE with:
// >bgdbserver TimeKeeper
// AmigaOS GCC & GDB:
// https://github.com/bebbo/amiga-gcc
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to gdbserver",
"type": "gdb",
"request": "attach",
"executable": "obj/TimeKeeper",
"target": "localhost:2345",
"remote": true,
"cwd": "${workspaceRoot}",
"gdbpath": "/opt/amiga/bin/m68k-amigaos-gdb",
}
]
}

19
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,19 @@
{
"cSpell.words": [
"Sonne",
"TZ",
"TZONE"
],
"files.associations": {
"alib_protos.h": "c",
"timer.h": "c",
"timer_protos.h": "c",
"shutdown.h": "c",
"gfxbase.h": "c",
"type_traits": "cpp",
"typeinfo": "c",
"dos.h": "c",
"commodities.h": "c",
"battclock.h": "c"
}
}

16
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,16 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Logger",
"type": "shell",
"command": "make -f Makefile.m68k",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}