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

vdp_vdu.h: add missing map_char_to_bitmap #45

Merged
merged 1 commit into from
Aug 26, 2024
Merged
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
2 changes: 2 additions & 0 deletions src/agon/include/agon/vdp_vdu.h
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,8 @@ void vdp_redefine_character_special( int char_num, uint8_t b0, uint8_t b1, uint8
void vdp_define_character( int char_num, uint8_t *data ); // uses VDP2.3.0 redefine special char 23,0,0x90
// VDU 23, 0, &91: Reset all system font characters to original definition
void vdp_reset_system_font( void );
// VDU 23, 0, &92, char, bitmapId;: Map character char to display bitmapId
void vdp_map_char_to_bitmap( int char_num, int bitmap_num );
// VDU 23, 0, &93, x; y;: Get ASCII code of character at graphics position x, y
void vdp_request_ascii_code_at_graphics_position( int x, int y, bool wait );
//
Expand Down