Clock Signal — an Oric emulator for macOS and Linux

Comments, problems, suggestions about Oric emulators (Euphoric, Mess, Amoric, etc...) it's the right place to ask. And don't hesitate to give your tips and tricks that help using these emulations in the best possible way on your favorite operating system.
User avatar
iss
Wing Commander
Posts: 1641
Joined: Sat Apr 03, 2010 5:43 pm
Location: Bulgaria
Contact:

Re: Clock Signal — an Oric emulator for macOS and Linux

Post by iss »

jbperin wrote: Wed Jul 29, 2020 6:36 am... I even tried to setup a microdisc.
It seams Microdisc + DSK is recently broken. Tried the 'standard' Sedoric 3.0 image. If I convert the same DSK to HFE it boots OK. Jasmin+DSK and BD-500+DSK work just fine.
ThomH
Flying Officer
Posts: 238
Joined: Thu Oct 13, 2016 9:55 pm

Re: Clock Signal — an Oric emulator for macOS and Linux

Post by ThomH »

This I was unaware of; I'll stick my nose in tonight. Also, for the record, I switched my desktop to German (the only other language I can read any of) and had no problem running the emulator; I'll keep digging.

Other than the ongoing Qt stuff — I'm currently engaged in the Qt forums re: the audio issue — I've otherwise been looking at some longstanding issues in the video stack preparatory to the addition of Metal and possibly DirectX backends. I finally got a lead on the bug some might have seen where if video output is a bottleneck* then bits of the display can jump up and down vertically, so hopefully that'll be fixed soon, too.

* probably rare for most people, and most obviously a sign that I should write a more efficient GPU pipeline. It's just really hard working on GLSL without any sort of profiling or debugging tools. This is an area where adding platform-specific APIs like Metal in addition to OpenGL might end up being really valuable, for all targets.

EDIT: so it looks like I broke the Microdisc when I attempted to generalise my handling of ROMDIS and the overlay area so that it wasn't Microdisc specific. I'll probably push a fix this weekend, giving it a few days in order to see whether I can get the video output fix in as well.

EDIT2: those changes have been formally released via the two binary channels — Snapcraft for Linux and the GitHub page for macOS.
ThomH
Flying Officer
Posts: 238
Joined: Thu Oct 13, 2016 9:55 pm

Re: Clock Signal — an Oric emulator for macOS and Linux

Post by ThomH »

A minor one to announce: the macOS version of Clock Signal now uses Apple Metal for video output rather than OpenGL. That's because Apple has deprecated OpenGL and therefore at some point it will become available. Apple has announced that it'll still initially be available on Apple Silicon Macs but I didn't spot that before I started the work. So I'm feeling pretty foolish now. But it's nice not to have any deprecated dependencies again.

The Metal version has some quality/speed improvements, which will be ported to OpenGL in the near future.

Otherwise, I've discovered a whole bunch of Vic-20 tests that demonstrate that some of the more obscure parts of my 6522 aren't working correctly — primarily, I've yet to chance upon exactly the proper way to handle PB7 toggling via timer 1 and many of the shift register modes aren't shifting at the correct rate. Clearly the shift register at least partially works since it's used for keyboard input on the Macintosh, but I guess there's work to be done there.

So a future update will likely improve emulation accuracy, albeit that I'm unaware of any titles that will be affected. If anybody knows anything that's currently broken, I'd love to know about it.

So, as always:
  • Mac binaries are at GitHub; and
  • Linux Qt binaries, if you don't want to build for yourself, are available via Snap.
As I've now marked the Snapcraft build as 'stable', you should also be able to find the emulator via the built-in application store on Ubuntu and related distributions. Search for 'Clock Signal' directly, or for e.g. 'Oric emulator' and it's currently the only thing that comes up. If anyone with Oricutron responsibility is reading this and is interested, I could try to assist in getting that listed too though I really only looked into proper YAML structure for qmake-based (i.e. Qt) builds. I'll bet regular make or cmake are even easier though.
ThomH
Flying Officer
Posts: 238
Joined: Thu Oct 13, 2016 9:55 pm

Re: Clock Signal — an Oric emulator for macOS and Linux

Post by ThomH »

Super minor addendum:

The Mac version had some UI issues under Big Sur; these have been fixed. It's also now available as an Intel + Apple Silicon universal binary.

Slightly more technical discussion starts here:

Re: Big Sur, I'd unwittingly made a dodgy assumption with regard to the means by which a window with a sheet on top can be dismissed. Big Sur changes the sheets to look more like iOS modals, and whatever Apple changed in the implementation meant that I no longer got away with doing things incorrectly. So as a specific flaw: if you used File -> New... and then cancelled the new machine, when you came to shut the application you'd suddenly be presented stuck with a weird ghost window in which the buttons do nothing. This is no longer the case.

Naturally this error has no effect in Qt or SDL, so no fixes for those are required.
User avatar
iss
Wing Commander
Posts: 1641
Joined: Sat Apr 03, 2010 5:43 pm
Location: Bulgaria
Contact:

Re: Clock Signal — an Oric emulator for macOS and Linux

Post by iss »

Great! I like Clock Signal for it's unique features and the pro-level of its internals. Thanks!
User avatar
Chema
Game master
Posts: 3014
Joined: Tue Jan 17, 2006 10:55 am
Location: Gijón, SPAIN
Contact:

Re: Clock Signal — an Oric emulator for macOS and Linux

Post by Chema »

I also like this emulator a lot... will there ever be a windows version :D ?
ThomH
Flying Officer
Posts: 238
Joined: Thu Oct 13, 2016 9:55 pm

Re: Clock Signal — an Oric emulator for macOS and Linux

Post by ThomH »

I don't know how pro-level I feel about the internals as I spend yet another day trying to conquer a relatively simple problem to do with the way the Apple IIgs does sort-of-NTSC-to-RGB conversion. Not to mention the continued lack of some relatively simple classic emulator functionality — save states being the most glaring. Albeit that I continue to edge closer on that one, it still being coupled to debugging.

Re: Windows, I have acquired a Windows 10 computer, installed Visual Studio on it, and discovered myself completely lost. I don't know what a modern Windows application looks like and I definitely don't know how the code should look. C++/WinRT seems like the best way in, but after spending the majority of this year on supporting Metal and the on supporting Qt I just couldn't bring myself to head straight into a third API so I chickened out and took the Apple IIgs detour.

That all being said, I expect Windows to be a lot easier than Qt was just because these platform abstractions never really do what you want whereas the actual platforms have a lot more depth to them.

I dare imagine I'm going to end up in the realm of DirectX if I want Mac-equivalent latency, but I don't think that's anything to be scared of. Prior to this year I knew no Metal whatsoever and, fine, it took a month or so but it worked out pretty well — a grand total of 1,802 lines, which is a fair trade to avoid whenever Apple puts up the next obstacle to OpenGL. Assuming DirectX actually ends up being a similar volume of work then it'll pay for itself pretty quickly.

So, anyway, it's on the radar, subject to competence.
ThomH
Flying Officer
Posts: 238
Joined: Thu Oct 13, 2016 9:55 pm

Re: Clock Signal — an Oric emulator for macOS and Linux

Post by ThomH »

Minor one: I may have bitten off more than I can chew with regards to my ongoing efforts to add the Apple IIgs to the emulator; it's just not that well documented, and I don't have a real machine. So that effort is obstructing progress elsewhere.

With one minor caveat, which is that the SDL build of Clock Signal now allows you to start an Oric with an early version of my 65816 emulation installed as a 65802. There are some fixes to come here, and if anybody ever actually writes any 65802-based software then it'll get promoted into the UI-based versions of Clock Signal and added to the automatic static analyser for launching media, but for now I'm just flagging that the option is there.

EDIT: or, indeed, if there even is any real software floating around for 65816-upgraded Orics, let me know and I'll get that second part started.
User avatar
Steve M
Squad Leader
Posts: 787
Joined: Fri Mar 24, 2006 3:33 am
Location: Cumbria, UK
Contact:

Re: Clock Signal — an Oric emulator for macOS and Linux

Post by Steve M »

It would be handy if the CSAVE produced a tap file. I have programs on disk. I've scanned the disk but they don't work on Oricutron - but they do work with Clock Signal. I want to get the programs back to Tap files which is easy on (now) Oricutron (with update from ISS).
User avatar
Steve M
Squad Leader
Posts: 787
Joined: Fri Mar 24, 2006 3:33 am
Location: Cumbria, UK
Contact:

Re: Clock Signal — an Oric emulator for macOS and Linux

Post by Steve M »

I was having a go with Clock Signal recently and noticed that neither the CTRL or ESC keys seemed to work. I could live without the ESC codes, but the CTRL needs to work for copying when editing lines (CTRL A). There's all the other control codes that are important.
User avatar
ibisum
Wing Commander
Posts: 1645
Joined: Fri Apr 03, 2009 8:56 am
Location: Vienna, Austria
Contact:

Re: Clock Signal — an Oric emulator for macOS and Linux

Post by ibisum »

ThomH wrote: Fri Feb 05, 2021 4:38 pm EDIT: or, indeed, if there even is any real software floating around for 65816-upgraded Orics, let me know and I'll get that second part started.

Orix? https://forum.defence-force.org/viewtopic.php?t=2149

Would be neat to have Twilighte/Orix in emulation.......
ThomH
Flying Officer
Posts: 238
Joined: Thu Oct 13, 2016 9:55 pm

Re: Clock Signal — an Oric emulator for macOS and Linux

Post by ThomH »

Steve M wrote: Fri Apr 23, 2021 12:19 am I was having a go with Clock Signal recently and noticed that neither the CTRL or ESC keys seemed to work. I could live without the ESC codes, but the CTRL needs to work for copying when editing lines (CTRL A). There's all the other control codes that are important.
Which version are you running, and which OS? I tried CRTL+G on my Mac and got the reassuring bell ring so I think that I must have made an error in one of the framework bindings.

Re: saving to tape, I have definitely boxed myself into something of a corner there; it's also a requested feature for the ZX81 though so it is one I need to find a way out of.
User avatar
Steve M
Squad Leader
Posts: 787
Joined: Fri Mar 24, 2006 3:33 am
Location: Cumbria, UK
Contact:

Re: Clock Signal — an Oric emulator for macOS and Linux

Post by Steve M »

I'm on Peppermint Linux. I'll need to boot it up to find the version, but it was a recent install.
ThomH
Flying Officer
Posts: 238
Joined: Thu Oct 13, 2016 9:55 pm

Re: Clock Signal — an Oric emulator for macOS and Linux

Post by ThomH »

Steve M wrote: Wed Apr 28, 2021 10:01 pm I'm on Peppermint Linux. I'll need to boot it up to find the version, but it was a recent install.
In that case, is it safe to assume the Qt version, with a full UI? If so then I'm not desperately surprised because Qt really makes using the keyboard in a game-like fashion difficult, and I ended up with endless magic constants.

If you get a chance, the output of `xmodmap -pke` on your machine might be helpful, but I'll look into it regardless.
User avatar
Steve M
Squad Leader
Posts: 787
Joined: Fri Mar 24, 2006 3:33 am
Location: Cumbria, UK
Contact:

Re: Clock Signal — an Oric emulator for macOS and Linux

Post by Steve M »

I can't find any version mentioned.
I'm pretty new to Linux. I'm trying to find where Clk Signal is installed but it's pretty hidden.

I got this but not sure if I've done it in the right place?

keycode 8 =
keycode 9 = Escape NoSymbol Escape
keycode 10 = 1 exclam 1 exclam onesuperior exclamdown onesuperior
keycode 11 = 2 quotedbl 2 quotedbl twosuperior oneeighth twosuperior
keycode 12 = 3 sterling 3 sterling threesuperior sterling threesuperior
keycode 13 = 4 dollar 4 dollar EuroSign onequarter EuroSign
keycode 14 = 5 percent 5 percent onehalf threeeighths onehalf
keycode 15 = 6 asciicircum 6 asciicircum threequarters fiveeighths threequarters
keycode 16 = 7 ampersand 7 ampersand braceleft seveneighths braceleft
keycode 17 = 8 asterisk 8 asterisk bracketleft trademark bracketleft
keycode 18 = 9 parenleft 9 parenleft bracketright plusminus bracketright
keycode 19 = 0 parenright 0 parenright braceright degree braceright
keycode 20 = minus underscore minus underscore backslash questiondown backslash
keycode 21 = equal plus equal plus dead_cedilla dead_ogonek dead_cedilla
keycode 22 = BackSpace BackSpace BackSpace BackSpace
keycode 23 = Tab ISO_Left_Tab Tab ISO_Left_Tab
keycode 24 = q Q q Q at Greek_OMEGA at
keycode 25 = w W w W lstroke Lstroke lstroke
keycode 26 = e E e E e E e
keycode 27 = r R r R paragraph registered paragraph
keycode 28 = t T t T tslash Tslash tslash
keycode 29 = y Y y Y leftarrow yen leftarrow
keycode 30 = u U u U downarrow uparrow downarrow
keycode 31 = i I i I rightarrow idotless rightarrow
keycode 32 = o O o O oslash Oslash oslash
keycode 33 = p P p P thorn THORN thorn
keycode 34 = bracketleft braceleft bracketleft braceleft dead_diaeresis dead_abovering dead_diaeresis
keycode 35 = bracketright braceright bracketright braceright dead_tilde dead_macron dead_tilde
keycode 36 = Return NoSymbol Return
keycode 37 = Control_L NoSymbol Control_L
keycode 38 = a A a A ae AE ae
keycode 39 = s S s S ssharp section ssharp
keycode 40 = d D d D eth ETH eth
keycode 41 = f F f F dstroke ordfeminine dstroke
keycode 42 = g G g G eng ENG eng
keycode 43 = h H h H hstroke Hstroke hstroke
keycode 44 = j J j J dead_hook dead_horn dead_hook
keycode 45 = k K k K kra ampersand kra
keycode 46 = l L l L lstroke Lstroke lstroke
keycode 47 = semicolon colon semicolon colon dead_acute dead_doubleacute dead_acute
keycode 48 = apostrophe at apostrophe at dead_circumflex dead_caron dead_circumflex
keycode 49 = grave notsign grave notsign bar bar bar
keycode 50 = Shift_L ISO_Next_Group Shift_L ISO_Next_Group
keycode 51 = numbersign asciitilde numbersign asciitilde dead_grave dead_breve dead_grave
keycode 52 = z Z z Z guillemotleft less guillemotleft
keycode 53 = x X x X guillemotright greater guillemotright
keycode 54 = c C c C cent copyright cent
keycode 55 = v V v V leftdoublequotemark leftsinglequotemark leftdoublequotemark
keycode 56 = b B b B rightdoublequotemark rightsinglequotemark rightdoublequotemark
keycode 57 = n N n N n N n
keycode 58 = m M m M mu masculine mu
keycode 59 = comma less comma less horizconnector multiply horizconnector
keycode 60 = period greater period greater periodcentered division periodcentered
keycode 61 = slash question slash question dead_belowdot dead_abovedot dead_belowdot
keycode 62 = Shift_R NoSymbol Shift_R
keycode 63 = KP_Multiply KP_Multiply KP_Multiply KP_Multiply KP_Multiply KP_Multiply XF86ClearGrab
keycode 64 = Alt_L ISO_Next_Group Alt_L ISO_Next_Group
keycode 65 = space NoSymbol space
keycode 66 = Caps_Lock NoSymbol Caps_Lock
keycode 67 = F1 F1 F1 F1 F1 F1 XF86Switch_VT_1
keycode 68 = F2 F2 F2 F2 F2 F2 XF86Switch_VT_2
keycode 69 = F3 F3 F3 F3 F3 F3 XF86Switch_VT_3
keycode 70 = F4 F4 F4 F4 F4 F4 XF86Switch_VT_4
keycode 71 = F5 F5 F5 F5 F5 F5 XF86Switch_VT_5
keycode 72 = F6 F6 F6 F6 F6 F6 XF86Switch_VT_6
keycode 73 = F7 F7 F7 F7 F7 F7 XF86Switch_VT_7
keycode 74 = F8 F8 F8 F8 F8 F8 XF86Switch_VT_8
keycode 75 = F9 F9 F9 F9 F9 F9 XF86Switch_VT_9
keycode 76 = F10 F10 F10 F10 F10 F10 XF86Switch_VT_10
keycode 77 = Num_Lock NoSymbol Num_Lock
keycode 78 = Scroll_Lock NoSymbol Scroll_Lock
keycode 79 = KP_Home KP_7 KP_Home KP_7
keycode 80 = KP_Up KP_8 KP_Up KP_8
keycode 81 = KP_Prior KP_9 KP_Prior KP_9
keycode 82 = KP_Subtract KP_Subtract KP_Subtract KP_Subtract KP_Subtract KP_Subtract XF86Prev_VMode
keycode 83 = KP_Left KP_4 KP_Left KP_4
keycode 84 = KP_Begin KP_5 KP_Begin KP_5
keycode 85 = KP_Right KP_6 KP_Right KP_6
keycode 86 = KP_Add KP_Add KP_Add KP_Add KP_Add KP_Add XF86Next_VMode
keycode 87 = KP_End KP_1 KP_End KP_1
keycode 88 = KP_Down KP_2 KP_Down KP_2
keycode 89 = KP_Next KP_3 KP_Next KP_3
keycode 90 = KP_Insert KP_0 KP_Insert KP_0
keycode 91 = KP_Delete KP_Decimal KP_Delete KP_Decimal
keycode 92 = ISO_Level3_Shift NoSymbol ISO_Level3_Shift
keycode 93 =
keycode 94 = backslash bar backslash bar bar brokenbar bar
keycode 95 = F11 F11 F11 F11 F11 F11 XF86Switch_VT_11
keycode 96 = F12 F12 F12 F12 F12 F12 XF86Switch_VT_12
keycode 97 =
keycode 98 = Katakana NoSymbol Katakana
keycode 99 = Hiragana NoSymbol Hiragana
keycode 100 = Henkan_Mode NoSymbol Henkan_Mode
keycode 101 = Hiragana_Katakana NoSymbol Hiragana_Katakana
keycode 102 = Muhenkan NoSymbol Muhenkan
keycode 103 =
keycode 104 = KP_Enter NoSymbol KP_Enter
keycode 105 = Control_R NoSymbol Control_R
keycode 106 = KP_Divide KP_Divide KP_Divide KP_Divide KP_Divide KP_Divide XF86Ungrab
keycode 107 = Print Sys_Req Print Sys_Req
keycode 108 = ISO_Level3_Shift Multi_key ISO_Level3_Shift Multi_key
keycode 109 = Linefeed NoSymbol Linefeed
keycode 110 = Home NoSymbol Home
keycode 111 = Up NoSymbol Up
keycode 112 = Prior NoSymbol Prior
keycode 113 = Left NoSymbol Left
keycode 114 = Right NoSymbol Right
keycode 115 = End NoSymbol End
keycode 116 = Down NoSymbol Down
keycode 117 = Next NoSymbol Next
keycode 118 = Insert NoSymbol Insert
keycode 119 = Delete NoSymbol Delete
keycode 120 =
keycode 121 = XF86AudioMute NoSymbol XF86AudioMute
keycode 122 = XF86AudioLowerVolume NoSymbol XF86AudioLowerVolume
keycode 123 = XF86AudioRaiseVolume NoSymbol XF86AudioRaiseVolume
keycode 124 = XF86PowerOff NoSymbol XF86PowerOff
keycode 125 = KP_Equal NoSymbol KP_Equal
keycode 126 = plusminus NoSymbol plusminus
keycode 127 = Pause Break Pause Break
keycode 128 = XF86LaunchA NoSymbol XF86LaunchA
keycode 129 = KP_Decimal KP_Decimal KP_Decimal KP_Decimal
keycode 130 = Hangul NoSymbol Hangul
keycode 131 = Hangul_Hanja NoSymbol Hangul_Hanja
keycode 132 =
keycode 133 = Super_L NoSymbol Super_L
keycode 134 = Super_R NoSymbol Super_R
keycode 135 = Menu NoSymbol Menu
keycode 136 = Cancel NoSymbol Cancel
keycode 137 = Redo NoSymbol Redo
keycode 138 = SunProps NoSymbol SunProps
keycode 139 = Undo NoSymbol Undo
keycode 140 = SunFront NoSymbol SunFront
keycode 141 = XF86Copy NoSymbol XF86Copy
keycode 142 = XF86Open NoSymbol XF86Open
keycode 143 = XF86Paste NoSymbol XF86Paste
keycode 144 = Find NoSymbol Find
keycode 145 = XF86Cut NoSymbol XF86Cut
keycode 146 = Help NoSymbol Help
keycode 147 = XF86MenuKB NoSymbol XF86MenuKB
keycode 148 = XF86Calculator NoSymbol XF86Calculator
keycode 149 =
keycode 150 = XF86Sleep NoSymbol XF86Sleep
keycode 151 = XF86WakeUp NoSymbol XF86WakeUp
keycode 152 = XF86Explorer NoSymbol XF86Explorer
keycode 153 = XF86Send NoSymbol XF86Send
keycode 154 =
keycode 155 = XF86Xfer NoSymbol XF86Xfer
keycode 156 = XF86Launch1 NoSymbol XF86Launch1
keycode 157 = XF86Launch2 NoSymbol XF86Launch2
keycode 158 = XF86WWW NoSymbol XF86WWW
keycode 159 = XF86DOS NoSymbol XF86DOS
keycode 160 = XF86ScreenSaver NoSymbol XF86ScreenSaver
keycode 161 = XF86RotateWindows NoSymbol XF86RotateWindows
keycode 162 = XF86TaskPane NoSymbol XF86TaskPane
keycode 163 = XF86Mail NoSymbol XF86Mail
keycode 164 = XF86Favorites NoSymbol XF86Favorites
keycode 165 = XF86MyComputer NoSymbol XF86MyComputer
keycode 166 = XF86Back NoSymbol XF86Back
keycode 167 = XF86Forward NoSymbol XF86Forward
keycode 168 =
keycode 169 = XF86Eject NoSymbol XF86Eject
keycode 170 = XF86Eject XF86Eject XF86Eject XF86Eject
keycode 171 = XF86AudioNext NoSymbol XF86AudioNext
keycode 172 = XF86AudioPlay XF86AudioPause XF86AudioPlay XF86AudioPause
keycode 173 = XF86AudioPrev NoSymbol XF86AudioPrev
keycode 174 = XF86AudioStop XF86Eject XF86AudioStop XF86Eject
keycode 175 = XF86AudioRecord NoSymbol XF86AudioRecord
keycode 176 = XF86AudioRewind NoSymbol XF86AudioRewind
keycode 177 = XF86Phone NoSymbol XF86Phone
keycode 178 =
keycode 179 = XF86Tools NoSymbol XF86Tools
keycode 180 = XF86HomePage NoSymbol XF86HomePage
keycode 181 = XF86Reload NoSymbol XF86Reload
keycode 182 = XF86Close NoSymbol XF86Close
keycode 183 =
keycode 184 =
keycode 185 = XF86ScrollUp NoSymbol XF86ScrollUp
keycode 186 = XF86ScrollDown NoSymbol XF86ScrollDown
keycode 187 = parenleft NoSymbol parenleft
keycode 188 = parenright NoSymbol parenright
keycode 189 = XF86New NoSymbol XF86New
keycode 190 = Redo NoSymbol Redo
keycode 191 = XF86Tools NoSymbol XF86Tools
keycode 192 = XF86Launch5 NoSymbol XF86Launch5
keycode 193 = XF86Launch6 NoSymbol XF86Launch6
keycode 194 = XF86Launch7 NoSymbol XF86Launch7
keycode 195 = XF86Launch8 NoSymbol XF86Launch8
keycode 196 = XF86Launch9 NoSymbol XF86Launch9
keycode 197 =
keycode 198 = XF86AudioMicMute NoSymbol XF86AudioMicMute
keycode 199 = XF86TouchpadToggle NoSymbol XF86TouchpadToggle
keycode 200 = XF86TouchpadOn NoSymbol XF86TouchpadOn
keycode 201 = XF86TouchpadOff NoSymbol XF86TouchpadOff
keycode 202 =
keycode 203 = Mode_switch NoSymbol Mode_switch
keycode 204 = NoSymbol Alt_L NoSymbol Alt_L
keycode 205 = NoSymbol Meta_L NoSymbol Meta_L
keycode 206 = NoSymbol Super_L NoSymbol Super_L
keycode 207 = NoSymbol Hyper_L NoSymbol Hyper_L
keycode 208 = XF86AudioPlay NoSymbol XF86AudioPlay
keycode 209 = XF86AudioPause NoSymbol XF86AudioPause
keycode 210 = XF86Launch3 NoSymbol XF86Launch3
keycode 211 = XF86Launch4 NoSymbol XF86Launch4
keycode 212 = XF86LaunchB NoSymbol XF86LaunchB
keycode 213 = XF86Suspend NoSymbol XF86Suspend
keycode 214 = XF86Close NoSymbol XF86Close
keycode 215 = XF86AudioPlay NoSymbol XF86AudioPlay
keycode 216 = XF86AudioForward NoSymbol XF86AudioForward
keycode 217 =
keycode 218 = Print NoSymbol Print
keycode 219 =
keycode 220 = XF86WebCam NoSymbol XF86WebCam
keycode 221 =
keycode 222 =
keycode 223 = XF86Mail NoSymbol XF86Mail
keycode 224 = XF86Messenger NoSymbol XF86Messenger
keycode 225 = XF86Search NoSymbol XF86Search
keycode 226 = XF86Go NoSymbol XF86Go
keycode 227 = XF86Finance NoSymbol XF86Finance
keycode 228 = XF86Game NoSymbol XF86Game
keycode 229 = XF86Shop NoSymbol XF86Shop
keycode 230 =
keycode 231 = Cancel NoSymbol Cancel
keycode 232 = XF86MonBrightnessDown NoSymbol XF86MonBrightnessDown
keycode 233 = XF86MonBrightnessUp NoSymbol XF86MonBrightnessUp
keycode 234 = XF86AudioMedia NoSymbol XF86AudioMedia
keycode 235 = XF86Display NoSymbol XF86Display
keycode 236 = XF86KbdLightOnOff NoSymbol XF86KbdLightOnOff
keycode 237 = XF86KbdBrightnessDown NoSymbol XF86KbdBrightnessDown
keycode 238 = XF86KbdBrightnessUp NoSymbol XF86KbdBrightnessUp
keycode 239 = XF86Send NoSymbol XF86Send
keycode 240 = XF86Reply NoSymbol XF86Reply
keycode 241 = XF86MailForward NoSymbol XF86MailForward
keycode 242 = XF86Save NoSymbol XF86Save
keycode 243 = XF86Documents NoSymbol XF86Documents
keycode 244 = XF86Battery NoSymbol XF86Battery
keycode 245 = XF86Bluetooth NoSymbol XF86Bluetooth
keycode 246 = XF86WLAN NoSymbol XF86WLAN
keycode 247 =
keycode 248 =
keycode 249 =
keycode 250 =
keycode 251 =
keycode 252 =
keycode 253 =
keycode 254 = XF86WWAN NoSymbol XF86WWAN
keycode 255 = XF86RFKill NoSymbol XF86RFKill
Post Reply