1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-11-22 01:31:27 +00:00

Improved doxygen documentation. Closes #672

This commit is contained in:
jespergravgaard 2021-06-19 22:37:48 +02:00
parent bde31dac4c
commit e277b08a26
3 changed files with 5 additions and 0 deletions

View File

@ -4,4 +4,7 @@ test:
mvn package
clean:
mvn clean
doxygen:
mkdir target
doxygen src/main/doxygen/doxygen.conf

View File

@ -1,5 +1,6 @@
/// @file
/// Find atan2(x, y) using the CORDIC method
///
/// See http://bsvi.ru/uploads/CORDIC--_10EBA/cordic.pdf
/// Find the atan2(x, y) - which is the angle of the line from (0,0) to (x,y)

View File

@ -1,5 +1,6 @@
/// @file
/// Commodore 128 Registers and Memory
///
/// https://archive.org/details/C128_Programmers_Reference_Guide_1986_Bamtam_Books/page/n299/mode/2up
#ifndef __C128__
#error "Target platform must be C128"