Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vimode file comments #85

Merged
merged 1 commit into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/vimodes/vimodefpalhaf1.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodefpalhaf1.c
*
* FPAL HAF1 Video Mode
*
* H = High Resolution
* A = Anti-Aliased
* F = Deflickered Interlaced
* 1 = 16-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodefpalhan1.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodefpalhan1.c
*
* FPAL HAN1 Video Mode
*
* H = High Resolution
* A = Anti-Aliased
* N = Normal Interlaced
* 1 = 16-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodefpalhpf1.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodefpalhpf1.c
*
* FPAL HPF1 Video Mode
*
* H = High Resolution
* P = Point Sampled
* F = Deflickered Interlaced
* 1 = 16-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodefpalhpf2.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodefpalhpf2.c
*
* FPAL HPF2 Video Mode
*
* H = High Resolution
* P = Point Sampled
* F = Deflickered Interlaced
* 2 = 32-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodefpalhpn1.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodefpalhpn1.c
*
* FPAL HPN1 Video Mode
*
* H = High Resolution
* P = Point Sampled
* N = Normal Interlaced
* 1 = 16-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodefpalhpn2.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodefpalhpn2.c
*
* FPAL HPN2 Video Mode
*
* H = High Resolution
* P = Point Sampled
* N = Normal Interlaced
* 2 = 32-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodefpallaf1.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodefpallaf1.c
*
* FPAL LAF1 Video Mode
*
* L = Low Resolution
* A = Anti-Aliased
* F = Interlaced
* 1 = 16-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodefpallaf2.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodefpallaf2.c
*
* FPAL LAF2 Video Mode
*
* L = Low Resolution
* A = Anti-Aliased
* F = Interlaced
* 2 = 32-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodefpallan1.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodefpallan1.c
*
* FPAL LAN1 Video Mode
*
* L = Low Resolution
* A = Anti-Aliased
* N = Non-Interlaced
* 1 = 16-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodefpallan2.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodefpallan2.c
*
* FPAL LAN2 Video Mode
*
* L = Low Resolution
* A = Anti-Aliased
* N = Non-Interlaced
* 2 = 32-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodefpallpf1.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodefpallpf1.c
*
* FPAL LPF1 Video Mode
*
* L = Low Resolution
* P = Point Sampled
* F = Interlaced
* 1 = 16-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodefpallpf2.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodefpallpf2.c
*
* FPAL LPF2 Video Mode
*
* L = Low Resolution
* P = Point Sampled
* F = Interlaced
* 2 = 32-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodefpallpn1.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodefpallpn1.c
*
* FPAL LPN1 Video Mode
*
* L = Low Resolution
* P = Point Sampled
* N = Non-Interlaced
* 1 = 16-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodefpallpn2.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodefpallpn2.c
*
* FPAL LPN2 Video Mode
*
* L = Low Resolution
* P = Point Sampled
* N = Non-Interlaced
* 2 = 32-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodempalhaf1.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodempalhaf1.c
*
* MPAL HAF1 Video Mode
*
* H = High Resolution
* A = Anti-Aliased
* F = Deflickered Interlaced
* 1 = 16-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodempalhan1.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodempalhan1.c
*
* MPAL HAN1 Video Mode
*
* H = High Resolution
* A = Anti-Aliased
* N = Normal Interlaced
* 1 = 16-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodempalhpf1.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodempalhpf1.c
*
* MPAL HPF1 Video Mode
*
* H = High Resolution
* P = Point Sampled
* F = Deflickered Interlaced
* 1 = 16-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodempalhpf2.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodempalhpf2.c
*
* MPAL HPF2 Video Mode
*
* H = High Resolution
* P = Point Sampled
* F = Deflickered Interlaced
* 2 = 32-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodempalhpn1.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodempalhpn1.c
*
* MPAL HPN1 Video Mode
*
* H = High Resolution
* P = Point Sampled
* N = Normal Interlaced
* 1 = 16-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodempalhpn2.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodempalhpn2.c
*
* MPAL HPN2 Video Mode
*
* H = High Resolution
* P = Point Sampled
* N = Normal Interlaced
* 2 = 32-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodempallaf1.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodempallaf1.c
*
* MPAL LAF1 Video Mode
*
* L = Low Resolution
* A = Anti-Aliased
* F = Interlaced
* 1 = 16-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodempallaf2.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodempallaf2.c
*
* MPAL LAF2 Video Mode
*
* L = Low Resolution
* A = Anti-Aliased
* F = Interlaced
* 2 = 32-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodempallan1.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodempallan1.c
*
* MPAL LAN1 Video Mode
*
* L = Low Resolution
* A = Anti-Aliased
* N = Non-Interlaced
* 1 = 16-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodempallan2.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodempallan2.c
*
* MPAL LAN2 Video Mode
*
* L = Low Resolution
* A = Anti-Aliased
* N = Non-Interlaced
* 2 = 32-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodempallpf1.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodempallpf1.c
*
* MPAL LPF1 Video Mode
*
* L = Low Resolution
* P = Point Sampled
* F = Interlaced
* 1 = 16-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodempallpf2.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodempallpf2.c
*
* MPAL LPF2 Video Mode
*
* L = Low Resolution
* P = Point Sampled
* F = Interlaced
* 2 = 32-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodempallpn1.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodempallpn1.c
*
* MPAL LPN1 Video Mode
*
* L = Low Resolution
* P = Point Sampled
* N = Non-Interlaced
* 1 = 16-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
10 changes: 10 additions & 0 deletions src/vimodes/vimodempallpn2.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/**
* @file vimodempallpn2.c
*
* MPAL LPN2 Video Mode
*
* L = Low Resolution
* P = Point Sampled
* N = Non-Interlaced
* 2 = 32-bit Framebuffer
*/
#include "PR/os.h"
#include "PR/rcp.h"
#include "PRinternal/viint.h"
Expand Down
Loading
Loading