Jump to content

Recommended Posts

Posted

As I've never really liked the appearance of the special character arrows, I went ahead and changed them. What I've done is this:

* make the arrows smaller and

* move them around so

* switching between the combined left/right arrow and the single left/right arrows keeps them in the same spot all the time

Code change in "special_characters.inc":

	;; char #0: left-arrow
db b'00000001', b'00000011'; 1st and 2nd line of special char
db b'00000111', b'00000011'; 3rd and 4th line of special char
db b'00000001', b'00000000'; 5th and 6th line of special char
db b'00000000', b'00000000'; 7th and 8th line of special char
;; char #1: right-arrow
db b'00000000', b'00000000'; 1st and 2nd line of special char
db b'00000000', b'00010000'; 3rd and 4th line of special char
db b'00011000', b'00011100'; 5th and 6th line of special char
db b'00011000', b'00010000'; 7th and 8th line of special char

;; ...

;; char #7: left/right arrow
db b'00000001', b'00000011'; line 1 / 2
db b'00000111', b'00010011'; line 3 / 4
db b'00011001', b'00011100'; line 5 / 6
db b'00011000', b'00010000'; line 7 / 8[/code]

spec_chars_thumb.png

2140_spec_chars_png6c7c62507190227e4b63e

Posted

Excellent!

Find attached a replacement "special_characters.inc" file for people to conveniently drop into the "src" directory and then rebuild their setup_*.hex file.

It is so easy to setup the new GPASM toolchain that this is a good exercise for everyone to try out building their own .hex file instead of using the ones that come in the .zip file.

http://www.ucapps.de/howto_tools_gpasm.html

special_characters.inc

special_characters.inc

Posted

Why thank you Wilba ;) Actually I could have thought of just posting the "special_characters.inc" myself... ::)

Posted

Please note, that Wilba's .inc file is not the latest one (e.g. $Id: $ header is missing)

Never overwrite files, only change them directly within the repository

Best Regards, Thorsten.

Posted

It is so easy to setup the new GPASM toolchain that this is a good exercise for everyone to try out building their own .hex file instead of using the ones that come in the .zip file.

http://www.ucapps.de/howto_tools_gpasm.html

For those of you who don't feel comfortable with that documentation, there's a step-by step guide coming to the wiki this week as well, as part of the reworked windows toolchain setup. (out with the old, in with the new)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...